Problem statement A long time ago, near to stone age I guess, we had one person in our team who’s one of the tasks was…
1 CommentHow to SFDC Posts
First of all, Welcome to Salesforce. When I started my journey, I was given a lot of books to read with practical assignments. At that…
Leave a CommentMessaging.SingleEmailMessage email = new Messaging.SingleEmailMessage(); Messaging.EmailFileAttachment efa = new Messaging.EmailFileAttachment(); efa.setFileName(‘test.pdf’); //File Name efa.setBody(someFile); efa.setContentType(‘application/pdf’); // File type email.setSubject( ‘adada’ ); email.setToAddresses( new String[] {‘[email protected]’}…
Leave a CommentConsideration for enabling manual sharing in Salesforce To do Manual Sharing: The person must be one of the following users. (Record level permission) The record…
Leave a Comment