Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
528 views
in Technique[技术] by (71.8m points)

salesforce - email.plaiTextBody returning null

if (correo.plainTextBody != null || email.subject != null) {
        String emailComplete= email.subject + ' ' + email.plainTextBody;
        String[] splitEmail= emailComplete.split('(?U)\s+');
        System.debug(splitEmail);

}

Assume Subject: Hi. Body: s How are you?

debug would be: ('Hi','How','are','you?')

but instead it returns ('Hi', null)

I don't know why.

EDIT: it just happens when sending emails from random addressed, I mean, mine work, one of my teammates works, and some other don't.

question from:https://stackoverflow.com/questions/65922369/email-plaitextbody-returning-null

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...