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
KVaishnaKVaishna 

Opportuinty Id in email template merge fields from Apex

Hi

 

How to pass Opportunity Id to email Template merge fields from Apex Class when you set TargetObjectId as User Id and not Contact Id.

Whatid option work with Contact record and not with User record.

 

sample code is given below:

 

mail.setToAddresses(toAddresses);
mail.setTargetObjectId(account.Owner.Id);
mail.setWhatId(opp.Id);                       
mail.setTemplateId('00XQ0000000Dcru');

 

Thanks

- Kunjan