function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Abdul_Abdul_ 

Messaging.sendEmail not compiling for some reason

I have the following method that has been working fine until today, I have not changed anything with the code.

Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage(); if(cc != null) { mail.setCcAddresses(cc); } mail.setToAddresses(toAddresses); mail.setReplyTo('******'); mail.setSenderDisplayName('Salesforce Messaging'); mail.setSubject(subject); mail.setHtmlBody(htmlBody); Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });

When I try to deploy I get:
Error: Compile Error: Method does not exist or incorrect signature: void sendEmail(List) from the type Messaging

This started today in both Sandbox and Production.

Does anyone know whats going on?
karthikeyan perumalkarthikeyan perumal
Hello, 


make your setToAddresses and setCcAddresses to list string like below.
 Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage(); 

 mail.CcAddresses= new string[] {'*******','********'};
 mail.setReplyTo('*******'); 
 mail.toAddresses  = new string[] {'*******','********'};
 
 mail.setSenderDisplayName('Salesforce Messaging'); 
 
 mail.setSubject(subject); 
 mail.setHtmlBody(htmlBody); 
 
 Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });

 hope this helps you. 

Thanks
karthik