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
TrueOasisTrueOasis 

Task - Set Email Notification to true?

It appears this field is missing from the list of standard options.  Is that true for everyone?

 

Peter

RajaramRajaram

Can  you be more specific on what you are trying to do? I am not clear.

TrueOasisTrueOasis

We want to set the "send notification email" check box to true on the task object.  I am not seeing a way to do that via visual workflow.

 

I think the way we can do this in apex is:

 

Task t = new Task(Subject='Follow-up');
Database.DMLOptions dmlo = new Database.DMLOptions();
dmlo.EmailHeader.triggerUserEmail = true;
database.insert(t, dmlo);

 Is there a way in flow?