function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ArikArik 

Create SFDC from inbound Email ?

Does anybody have any idea how one would go about solving this problem:

 

1  I want to create an a SFDC event from an inbound email (using mail service)

 

Thank in advance

Best Answer chosen by Admin (Salesforce Developers) 
Navatar_DbSupNavatar_DbSup

Hi,

 

You can do this through an Apex class which will read the data from email and will create the event based on that. You can send date in XML format so that in your Apex class you can easily use xmlparser to fetch the data from email.

 

For more details go through the link below:
http://blog.jeffdouglas.com/2010/03/12/writing-an-inbound-email-service-for-salesforce-com/

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.