You need to sign in to do that
Don't have an account?

Notifictaion Email When Event Updated
I have a custom Event page, where i have invite section for an event,when i try to update any comment or custom field,
Im not receiving Email Notfication for existing Invitees.
where i can receive email notification for newly added Invitees.
Here is Below code for for new invitee(WORKING).
Database.DMLOptions dlo = new Database.DMLOptions();
dlo.EmailHeader.triggerUserEmail = true;
dlo.EmailHeader.triggerOtherEmail = false;
dlo.EmailHeader.triggerAutoResponseEmail = false ;
Database.insert(NewRelation,dlo);
Here is Below code for for existing invitee(NOT WORKING).
Database.DMLOptions dlo = new Database.DMLOptions();
dlo.EmailHeader.triggerUserEmail = true;
dlo.EmailHeader.triggerOtherEmail = false ;
dlo.EmailHeader.triggerAutoResponseEmail = false ;
Database.update(existRelation,dlo);
where existRelation will have only event id and RelationId.
its an Bug or this feature is not available??.
Thanks
D Naveen rahul.
Im not receiving Email Notfication for existing Invitees.
where i can receive email notification for newly added Invitees.
Here is Below code for for new invitee(WORKING).
Database.DMLOptions dlo = new Database.DMLOptions();
dlo.EmailHeader.triggerUserEmail = true;
dlo.EmailHeader.triggerOtherEmail = false;
dlo.EmailHeader.triggerAutoResponseEmail = false ;
Database.insert(NewRelation,dlo);
Here is Below code for for existing invitee(NOT WORKING).
Database.DMLOptions dlo = new Database.DMLOptions();
dlo.EmailHeader.triggerUserEmail = true;
dlo.EmailHeader.triggerOtherEmail = false ;
dlo.EmailHeader.triggerAutoResponseEmail = false ;
Database.update(existRelation,dlo);
where existRelation will have only event id and RelationId.
its an Bug or this feature is not available??.
Thanks
D Naveen rahul.
Thanks
D Naveen Rahul.