The massemailmessage tag has no wiki summary.
3
votes
1answer
26 views
Can I save a mass email message on the record?
Problem: Our users make extensive use of Salesforce's native Mass Email functionality, but when a mass email is sent out, SF records it as a Task and not as an email (see screenshot.) This poses a ...
0
votes
0answers
19 views
Scheduled Mass Email - When is the Query Run?
I have a drip campaign sending out emails to leads who are NOT unqualified (there are also some more filters)
I generally queue 4 weeks worth of emails so I have a big batch of emails ready to go ...
7
votes
1answer
62 views
Ignore user context while sending SingleEmailMessage
Can we send SingleEmailMessage(s) under admin context and ignore current user sharings and profile access.
Details:
- visualforce email template is related to object B which is not available for users ...
4
votes
1answer
65 views
NO_MASS_MAIL_PERMISSION [duplicate]
I am trying to send an email from a system admin account which has send email and mass email enabled. I get:
SendEmail failed. First exception on row 0; first error: NO_MASS_MAIL_PERMISSION, Single ...
2
votes
1answer
25 views
How to add ContentVersion data to an outbound email from a Trigger
So I have the following class:
public static void sendmail(String documenttitle)
{
List<Id> contactids = new List<Id>();
List<user> con = new List<User>();
con = ...
1
vote
2answers
220 views
Mass Email user functionality in Sandbox throwing error
When I click on Mass Email Users.. I have this message
Your organization's email privileges have been revoked due to
non-compliance with our Terms of Use. Please contact your
salesforce.com ...
1
vote
2answers
46 views
Is it possible to create a view of contacts that's based on global tags from the accounts to which they belong?
I need to notify people at a set of accounts that a product they've purchased has been updated.
This is not the long term solution that I want, but what I did for the time being was put global tags ...
0
votes
0answers
20 views
Problem with link in campaign mail template
I have created a campaign and associated mailing template for a mass mailing which attaches a link to a custom form assembly object. The link shows in the actual mail template, but when clicked on in ...
1
vote
2answers
45 views
Mass email contacts from organization wide address
I want to send a mass email to all my contacts (using the mass email wizard) but would like to have the "from" address be my organization wide address (like info@aaaa.com).
How can I achieve that?
4
votes
2answers
232 views
What's the Advantage of using MassEmailMessage instead of multiple SingleEmailMessage?
I'm scoping out a project that will involve sending outbound email messages, and I'm a little confused about why one would use a MassEmailMessage instead of multiple SingleEmailMessages.
If you look ...