The apex-email-service tag has no wiki summary.
1
vote
0answers
23 views
Ugly format of Email generated by EmailTemplate saved as Activity
I have written some code that sends an email based on an HTML based email template to contacts and stores a copy of the email as an activity. I noticed that the content of said email in the activity ...
5
votes
1answer
81 views
'DataDotComEntitySetting' is not supported
I am writing a custom email service. I can get the incoming csv file and parse it down to rows and then columns. I do my thing, then I try to insert the objects (I know they are all original, the data ...
3
votes
3answers
104 views
Scraping text from email and storing in a field
I know that there is a web to lead form I can create to do something similar, but is there an easy way to get the inbound email address which can be monitored and the data from the email can be ...
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 = ...
4
votes
2answers
59 views
Accessing Outbound Mails
I would like to access the outbound emails sent from salesforce to the users(for eg. notification mail, scheduled reports mails etc). Could anyone tell me where those mails will be stored in the ...
1
vote
2answers
36 views
New Lead alert not been sent from Email Service
When creating a Lead through the UI, the system is sending a New Lead Alert to the New lead owner.
However, I discovered, that if using Email Services - that New Lead alert is NOT been sent.
Anyone ...
0
votes
2answers
56 views
How to use Email services
I have created a email service to receive a emil from a provided email id I want to print the emiail body in debug log for this I write some debug to that but my problem is nothing get printes in ...
0
votes
2answers
39 views
Approval Emails sent from saleforce
Is there a way to get the log of all the Approval emails sent from Salesforce. I tried to get the log of all the emails sent out by requesting for email log, but for some reason feel like the data is ...
2
votes
2answers
393 views
Trigger to create task/email when Opportunity is updated with a certain stage
I am trying to create a trigger (possibly After Update) such that it is fired when an Opportunity is updated with a certain stage. It should create a task and send an email to a user. The email should ...
1
vote
2answers
178 views
Gmail Forwarding Address verification code for Apex Email Service
I have written an Apex Email Service and would like to setup a rule in gmail to forward certain messages to the Email Service.
The first step when creating a forwarding address in gmail is the ...
5
votes
1answer
95 views
Notification of Rejected Email
The documentation on governor limits states that:
Email services rejects email messages and notifies the sender if the
email (combined body text, body HTML and attachments) exceeds
...
2
votes
2answers
89 views
Can the Context User on an Email Service be an API-Only User?
The title kind of says it all: Can the Context User on an Email Service be an API-Only User?
I found this note in the online documentation:
Set Context User – this specifies the context under ...
6
votes
1answer
82 views
What happens if I deactivate a User associated with an Email Service
Lets say I set up an Email Service running as a given context user. What happens if I then deactivate that user? Does the service continue running? Stop running? Do I get an error message?
I ...
