- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2017 11:05 PM
Good day all,
I created a new Application which will just be a database for records of companies. Communication to these companies will be a requirement especially bulk communication via email.
Requirement is to send bulk emails from List view of records after filtering the records to the ones we want the email to be sent to.
The email client UI Page should appear when selecting the List UI Action.
Here is my requirement in screenshots:
Select records in list and then choose UI Action.
UI Action should then query the email address field on all selected records and open the Email Client UI Page populating the BCC field with the email address of each selected record.
Is this possible and what are my steps to create this? UI Action > Business Rule for query > Script include?
Thank you in advance
Regards,
Johannes Coetsee
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-01-2018 10:23 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2017 11:06 PM
I have already enabled the email client for my custom table and can send emails from the form view to single records
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2017 02:22 AM
I've managed to Query the email addresses using the UI Action with this UI Action script:
var gr = new GlideRecord("table_name");
gr.addQuery("u_email_address_1", current.u_email_address_1);
gr.query();
if (gr.next()) {
gs.addInfoMessage(gr.u_email_address_1);
}
Next step is to open the Email Client UI Page with all the email addresses inserted into the BCC field.
UI Action can only call one function at a time form what I can see....
Select records and click UI Action
Info message displays field values
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-09-2017 10:26 PM
It seems nobody has had this functionality requirement
I've been able to get a workaround by using two new form fields and a workflow with notification but still lack ability to attach files to the notification.
I've also realised the BCC populate will not work. Would require the email to rather loop through all selected records and insert the Number into the Subject line and then only the subject details and body so that the receiver of email can reply back with the watermark related to the relevant record.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-10-2017 12:43 AM
Hi Johannes,
Where you want this option. Is it your custom table and which field refers to User record so that we can fetch email Id.
Thank you,
Ashutosh Munot