I want to send email or sms to user when they sign up in the website.
How can I do that??
And How I can send the reminder messages via email or Sms to different users using asp.net??
Please tell something about that..
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Karthick ViswanathanPosted Apr 10, 2013, 9:07 AM
You can send Mail by using System.Net.Mail namespace and MailMessage Class.
SmtpClient smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
DeliveryMethod = SmtpDeliveryMethod.Network,
Credentials = new System.Net.NetworkCredential(senderID, senderPassword),
};
MailMessage msg = new MailMessage(senderID, toAddress, subject, body);
smtp.Send(msg);
For SMS :
Search some free SMS gateways to send sms from your App. The providers give you configurations to send SMS