Disable Email notifications for Contacts and Leads in SugarCRM

Hello, 

We are heavily using Calendar and Meeting function in SugarCRM - whereas we want to add Guests to our meetings, users do not want their guest receiving meeting reminders and notifications from Sugar - is there a way to disable email notifications to Leads and Contacts?

Thanks!

Ada

Parents
  • 1st you can reset the send_invites flag for meetings and calls in a before_save logic hook. The bean itself sends the invite emails when the send_invites field is set.

    2nd the email reminders are sent in the EmailReminder class (modules\Activities\EmailReminder.php) which is called by the standard scheduler job "send reminders". To inactivate the reminders you could write a custom scheduler from the standard code.

Reply
  • 1st you can reset the send_invites flag for meetings and calls in a before_save logic hook. The bean itself sends the invite emails when the send_invites field is set.

    2nd the email reminders are sent in the EmailReminder class (modules\Activities\EmailReminder.php) which is called by the standard scheduler job "send reminders". To inactivate the reminders you could write a custom scheduler from the standard code.

Children
No Data