Email Notification of web content through .net
-
Hi! I need to build a notification tool which sends the email right at the moment when a service portal gets new incident. For this I need to pick up email content from service portal, which can be static data as 'label data' or can be input data as 'text entered' or 'option selected' etc. I'm willing to build this solution in .net C#. Please suggest me a convinient method through which I can get the email content. Many Thanks in advance!!
-
Hi! I need to build a notification tool which sends the email right at the moment when a service portal gets new incident. For this I need to pick up email content from service portal, which can be static data as 'label data' or can be input data as 'text entered' or 'option selected' etc. I'm willing to build this solution in .net C#. Please suggest me a convinient method through which I can get the email content. Many Thanks in advance!!
Well you should write some code first to grab the data you want. Then write some code to send the email, passing the data you gathered to the email message body. And keep refining the code till your satisfied with it. Speaking for myself, I have no clue what you want to send in your email.
-
Well you should write some code first to grab the data you want. Then write some code to send the email, passing the data you gathered to the email message body. And keep refining the code till your satisfied with it. Speaking for myself, I have no clue what you want to send in your email.
If the data is coming in a table say "Table1", then create a trigger on the table to get the data and create the message and put the data in table "Table2". Build a Windows Service which monitors the "Table2" row with some status (say open). Take data and send the email and update the status of the row (say Close or sent). Otherwise Please provide some more clarity on your question exactly what do you want to do?