• Nagaveena A 5
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
Hi,

I am trying to send email from rest resource with attachments from records notes and attachments.
But i am receiveing email with strange behaviour.

1. I cant open one of the email attachments
2. I can open one of the pdf's but it has content of previous one
3. FIle contents are gettinf swapped between files.

***** I tried by executing same piece of code in developer console. it worked well

Below is sample code with hard coded values
@RestResource(urlMapping='/sendPDFEmail2/*')
Global class TESTSENDEMAIL{
    @HttpPost
     global static void sendEmail(String pobjQuoteId, String emailTemplate) {
        Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
        string [] toaddress = new List<String>{'krishna.katve@gmail.com'}; 
        mail.setToAddresses(toaddress);  
        mail.setTargetObjectId('005c0000001hn1i');
        mail.setWhatId('a35c000000042bA');
        mail.setTemplateId('00Xc0000000MdL2');
        mail.setSaveAsActivity(false);
             
        List<Messaging.Emailfileattachment> fileAttachments = new List<Messaging.Emailfileattachment>();
          
        List<Attachment> aList  = [select Name, Body from Attachment where ParentId = :parentId limit 10];
        
        for(Attachment a : aList){    
            Messaging.Emailfileattachment efa = new Messaging.Emailfileattachment();
            efa.setFileName(a.Name);
            efa.setBody(a.Body);
            fileAttachments.add(efa);                   
        }
            
        if(!fileAttachments.isEmpty()){   
            mail.setFileAttachments(fileAttachments);
        }
        Messaging.SendEmailResult[] resultMail = Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });
     }
}

Please advise.

Thanks
Krishna