About Me

My photo
Dhaka, Bangladesh
I am B.S.C Engineer,CSE,SUST and Ex-Cadet of Mirzapur Cadet College.

Saturday, July 5, 2008

SMTP Mail sending ASP/C#.net (Go Daddy Hosting)

//------------------mail sending code-----------//
const string SERVER = "relay-hosting.secureserver.net";
MailMessage oMail = new System.Web.Mail.MailMessage();
oMail.From = "info@krisantech.com";
oMail.To = email;
oMail.Subject = "Your Krisantech Password";
oMail.BodyFormat = MailFormat.Html; // enumeration
oMail.Priority = MailPriority.High; // enumeration
oMail.Body = "Sent at: " + DateTime.Now+"Password: "+password;
SmtpMail.SmtpServer = SERVER;
SmtpMail.Send(oMail);
oMail = null; // free up resources
//------------------end mail sending code-------//

3 comments:

micha said...

thank you! :)

PavanTheOne said...

I am getting this error

The server rejected the sender address. The server response was: 553 sorry, your mail was administratively denied. (#5.7.1)

Balaji Mada said...

Hi,
I am getting this type of error

The server rejected the sender address. The server response was: 553 sorry, your mail was administratively denied. (#5.7.1)