Hello!
Has anybody developed the code for sending an email to user when a contact is assigned? is this feature planned for a new version of splendidCRM?
Thanks a lot!
Cristian
Hello Christian,
I developed the feature you're talking about.
Alberto
Hi Alberto!
Can you tell me how did you do? i'm quite new in asp.net and c#... but do you have splendidCRM Professional o the free version? I use the free version...
Thank you!
P.S.: Are you italian?
Yes I am italian and I have a professional version but you don't need it.
I can send you few examples if you want.
I altered the system to allow for various types of notifications.
We now have standard assignment notification emails where an email is sent to a user when they become the proud new owner of an account/lead/opp/contact/task. I altered the desired _Update procs to include a new OUTPUT Guid param. Code was added to these procs to check if a notification was necessary(change of ownership). In addition, the RECEIVE_NOTIFICATION value in the users table is checked. If a notification is needed, the notification is stored in a table with all necessary details and the output param was set to the id of the notification. Within the codebehind, the notification_id param is checked to see if it is empty. If not, a helper class is utilized to send out the notification. The notifications are strictly tied to email templates.
The end user can also send notifications to the invitees of a call/meeting (Internal users only at this time [no contacts]). The user selects a template (cancel, new, update, reminder) and the notification is sent immediately to the invitees.