-
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
How to Design Webpages for Nonprofits Faster Using Salesforce
How to Design Webpages for Nonprofits Faster Using Salesforce Nonprofits are now looking to create smooth integration between their web pages and the Salesforce platform.…
How to Register Your Domain in Salesforce?
Hey there! May be you are using standard domain in salesforce but if you want to register your own domain so here we will learn…
The Ultimate Guide To Salesforce Data Recovery And Backup
Of course Salesforce manages with the available services and provides different backup and recovery features in case you face data losses or need to return…
Popular Salesforce Videos
Guide to Salesforce Manufacturing Cloud | Beginners
Unlock the Power of Salesforce Manufacturing Cloud | Streamline Your Manufacturing Operations In this video, we dive deep into Salesforce Manufacturing Cloud and explore how…
100 Hours of Dreamforce on Salesforce+
Mark your calendar… get set… GO! Dreamforce 2021 is coming to you. So let's come together, from wherever you are, to learn, connect, have fun,…
What is Salesforce
Discover Salesforce, the world’s leading CRM platform! Learn how it helps businesses manage customer relationships, automate workflows, and grow. We’ll explore its ecosystem—Sales Cloud, Service…