You need to sign in to do that
Don't have an account?
Unexpected token 'body'
Hello,
I'm trying to send mail using apex class.
While I'm executing via Execute Anonymous Apex with Editors Content it throws an error stating "Unexpected token 'body' on line #3".
Below I'm pasting my code.
List<String> address = new List<String> { 'prince.sharma930@gmail.com', 'rahuls91221@gmail.com' };
String subject = 'Topcoder Challenge Sample Mail';
String body = 'Hi, Hope you stay safe and healthy during the COVID-19.;
WelcomeEmailProcessor.sendMail(address, subject, body);
Kindly Help.
Thanks you!
I'm trying to send mail using apex class.
While I'm executing via Execute Anonymous Apex with Editors Content it throws an error stating "Unexpected token 'body' on line #3".
Below I'm pasting my code.
List<String> address = new List<String> { 'prince.sharma930@gmail.com', 'rahuls91221@gmail.com' };
String subject = 'Topcoder Challenge Sample Mail';
String body = 'Hi, Hope you stay safe and healthy during the COVID-19.;
WelcomeEmailProcessor.sendMail(address, subject, body);
Kindly Help.
Thanks you!
Single quote missing in the sentence
List<String> address = new List<String> {'shatrughnasalunkhe@gmail.com', 'shatrughnasalunkhe@gmail.com'};
String subject = 'Topcoder Challenge Sample Mail';
String body = 'Hi, Hope you stay safe and healthy during the COVID-19.';
WelcomeEmailProcessor.sendMail(address, subject, body);
Regards,
Shatrughna
Actually i have closed with single quotes but while pasting here accidentally I deleted it before posting.
So is there any other way to solve that error, because I have been stuck at this from past 2-3 hours.
Kind regards,
Prince Sharma
Could you please paste your WelcomeEmailProcessor apex class code so that we can debug it.
The below code seems to work fine for me.
List<String> address = new List<String> {'shatrughnasalunkhe@gmail.com', 'shatrughnasalunkhe@gmail.com'};
String subject = 'Topcoder Challenge Sample Mail';
String body = 'Hi, Hope you stay safe and healthy during the COVID-19.';
Regards,
Shatrughna Salunke