Welcome to my blog

I have been working with Salesforce for quite a while, so don’t hesitate to contact me if you have any questions or want some advice.

s f

Subscribe
Follow Us
h

How to export(CSV/Excel) Salesforce Reports using Apex and send email

 . Apex  . How to export(CSV/Excel) Salesforce Reports using Apex and send email

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.

Screen Shot 2017-04-11 at 10.32.11 AM

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');

Post a Comment