-
I am new to salesforce. i want to send email with attachment
I am new to salesforce. i want to send email with attachment that stored in static resources. please tell me how to do it
Answer-
public class EmailStaticResource {
public void StaticresourceDataAsEmail(){
Messaging.SingleEmailMessage email = new Messaging.SingleEmailMessage();
email.setUseSignature(false);
email.setSaveAsActivity(true);
email.setSubject('Send Email using staticResource as body of mail ');
String[] toAddresses = new String[] {'ganesh.maharana@janbask.com'};
email.setToAddresses(toAddresses);
email.setHtmlBody('<html><body>Dear devoplers<b>See the code for Email service</b></body></html>');
StaticResourcesr = [Select Name, Id, Body From StaticResource where Name = 'Document'];
Blob tempBlob = sr.Body;
Messaging.EmailFileAttachmentefa = new Messaging.EmailFileAttachment();
efa.setBody(tempBlob);
efa.setFileName('attachment.pdf');
email.setFileAttachments(new Messaging.EmailFileAttachment[] {efa});
Messaging.SingleEmailMessage[] emailList = new Messaging.SingleEmailMessage[] {email};
Messaging.sendEmail(emailList);
}
}
Log In to reply.
Popular Salesforce Blogs
What are the Different Platforms for Salesforce Mobile App Development Tools?
The Salesforce Lightning app is the browser based tool, which can be used by either developers or non-developers to develop the Salesforce apps. The easy…
Customer Success With Salesforce Customer Portal | The Ultimate Guide
Tech writers are in a unique position to understand the products and portals they write about thoroughly. Not only portals but also how self-service changes…
Salesforce Admin vs. Salesforce Developer, Which One Does Your Business Need?
If you want to enjoy the great benefits that Salesforce offers to your organization’s external and internal customers, please pay close attention. The process requires…
Popular Salesforce Videos
Get Started with Salesforce Elevate
Salesforce is a powerful tool to analyze your past fundraising, and monitor your ongoing efforts. In this webinar, we'll start with the fundamentals -- understanding…
What is Salesforce CPQ?
Unlock the power of Salesforce CPQ with our latest webinar. Whether you're a sales professional, business owner, or Salesforce enthusiast, this video breaks down the…
Salesforce Admin Certification 2020 Questions Explained with References - Part II
How to prepare and pass Salesforce Admin Certification with Practice Exam Questions 2020 practice questions and answers for the Salesforce Administration Salesforce Certified Admin Exam Questions Salesforce Administrator Certification Exam…