You need to sign in to do that
Don't have an account?
Parteek Goyal 3
Unable to save ValidatedFromAddress field in EmailMessage trigger
Hi All,
I have written a trigger on EmailMessage object. I added a validation on From Address. below is the validation condition.
I further Investegated it and found that we can use ValidatedFromAddress field for Lightning, this field is visible in field list of email Message but I am unable to save it in the trigger. I am not sure how to fix this isssue.
I have written a trigger on EmailMessage object. I added a validation on From Address. below is the validation condition.
if(!email.FromAddress == 'test@test.com' && em.Incoming == false){ System.debug('Testing Email'); em.addError('Check From Email Address'); }It is working fine in Salesforce Classic but when I switch it to Lightining then it's not working as FromAddress is comming NULL.
I further Investegated it and found that we can use ValidatedFromAddress field for Lightning, this field is visible in field list of email Message but I am unable to save it in the trigger. I am not sure how to fix this isssue.