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
sabelstromsabelstrom 

Help with triggerUserEmail header option in AJAX 8.0

Have ported the Mass Create Tasks freebie to 8.0 from ajax beta and would like to add the email notification option.  The ajax documentation seems to indicate that I don't need to create an EmailHeader instance, but rather just need to set

sforce.connection.triggerUserEmail=true;

before the task 'create' call. Is this the case? I assume something is missing, as it does not work. 
 
Any help would be greatly appreciated!!
 
p.s. - when done and with notification working, I will post this to appexchange, if anyone is looking for something similar
cheenathcheenath
Try this:

sforce.connection.emailHeader =  { triggerUserEmail : true};

I will file a bug to fix the docs.

Thanks,



sabelstromsabelstrom

cheenath,

thanks, that did the trick!

Eva DeLoriolEva DeLoriol

Where did you put it?  Inside the function taskCreation() {   ??  My team is researching these blogs.