Latest Updates
Travel to Technology
How to export (CSV/Excel) Salesforce Reports using Apex and send email
Export (CSV/Excel) Salesforce Reports Using Apex And Send Email
There are many case – user want to review data weekly or monthly base but they want to data as CSV/Excel file in the Email.
Many of now writing apex batch job to generate CSV fie and sending email. There is easiest way to use Salesforce Report ID and export in the Apex code.

Sample Code for Excel:
ApexPages.PageReference objPage = new ApexPages.PageReference('/00O90000008oZK1?excel=1'); Messaging.EmailFileAttachment objMsgEmailAttach = new Messaging.EmailFileAttachment(); objMsgEmailAttach.setFileName('Testing.xls'); objMsgEmailAttach.setBody(objPage.getContent()); objMsgEmailAttach.setContentType('application/vnd.ms-excel');Sample Code for CSV:
ApexPages.PageReference objPage = new ApexPages.PageReference('/00O90000008oZK1?csv=1');
Messaging.EmailFileAttachment objMsgEmailAttach = new Messaging.EmailFileAttachment();
objMsgEmailAttach.setFileName('Testing.csv');
objMsgEmailAttach.setBody(objPage.getContent());
objMsgEmailAttach.setContentType('text/csv');
Our Recent Blogs
-
27 Jan, 2021
Salesforce Architect Domain Exam
-
23 Nov, 2016
Salesforce Certified Technical Architect New Path
-
28 Mar, 2018
Salesforce Release Exam in Trailhead Certification
-
29 Dec, 2021
Salesforce Certifications