i have a problem that i have to send the notification to my user on every event which occur in my system which is help desk. can you please guide my about it?
this code is more helpfull to send email notification in Asp.net. '(1) Create the MailMessage instance Dim mm As New MailMessage(fromAddress, toAddress)
'(2) Assign the MailMessage's properties mm.Subject = subject mm.Body = body
You could use a ajax timer control if in ASP.net to do this or alternatively create a Windows service to do the same.
ReplyDeletethis code is more helpfull to send email notification in Asp.net.
Delete'(1) Create the MailMessage instance
Dim mm As New MailMessage(fromAddress, toAddress)
'(2) Assign the MailMessage's properties
mm.Subject = subject
mm.Body = body
'(3) Add the read receipt request SMTP header (Disposition-Notification-To)
mm.Headers.Add("Disposition-Notification-To", sendReadReceiptToAddress)