11/22/2024 3:55:08 AM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss the use of the SalesLogix Web Platform, Client and Customer Portals, and the Application Architect (For version 7.2 and higher only). View the code of conduct for posting guidelines.
|
|
|
|
automatic email notification
Posted: 30 Sep 16 3:04 AM
|
Is there a way to have the email notifaction automatically sent to the user every time when the user is added to: meeting, to-do, opportunity or other conent in CRM (8.3) ?
CRM works with Lotus Notes.
Thank you in advance
Darek
|
|
|
|
Re: automatic email notification
Posted: 30 Sep 16 3:16 AM
|
I’m afraid not from my experience (I could be wrong..) You will need to look at a 3rd party application like Orbis TaskCentre or KnowledgeSync for alerts and notifications etc.
|
|
|
|
Re: automatic email notification
Posted: 03 Oct 16 1:47 AM
|
Thanks, I thought it was somewhere available within the system. From what I know such functionality is delivered in other CRM systems like SAP for instance. |
|
|
|
Re: automatic email notification
Posted: 12 Jan 18 9:51 AM
|
We're working with SLX 7.5.4 Web, but I think the approach must be similar. It's possible to send e-mails through a mail server programmatically (e.g. via SmtpClient class: https://msdn.microsoft.com/en-us/library/system.net.mail.smtpclient(v=vs.110).aspx). So you implement a function to create an e-mail and send it. This function has to be called whenever the user is added to any content:
- Retrieve the user added and get its e-mail address (which has to be populated in advance)
- Compilate the mail (set recipient, content, attachments etc.)
- Send the mail to the user's e-mail address via the smtp client (or another preferred library)
This way our 1st level support gets an e-mail everytime a ticket is assigned to the corresponding team. |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|