I am using asp.net and C#.
I have deployed my application on the server and now I come to know that my server would not provide me SMTP detail , is their any way I could send sms without smtp details.
I can use bot asp.net3.5 with C# or SQL Server 2005 to send mail.
Thanks in advance
To send an email with C# / .NET, make use of the
System.Net.MailMessageandSystem.Net.SmtpClientclasses.Create a new instance of the
MailMessageclass, set some properties (from, to, body, subject, etc).Create a new instance of the
SmtpClientclass, set some properties (SMTP credentials).Then just do
smtpClient.Send(mailMessage).Pretty simple.