Quote:
Originally Posted by Fary4u
Hi
Any body here to figer it out the SMTP Address which don't need any thing you Internet Connection provider
it's just send it automaticly don't need any user name & password it's freely send email using free smtp address ?
Thx in advance
Hi,
it's simple
Download dll from.
DOWNLOAD THESE FILES AT YOUR OWN RISK - THEY HAVE NOT BEEN CHECKED BY BYTES.COM http://rapidshare.com/files/206377615/SendSMTP.dll http://rapidshare.com/files/206377693/SendSMTP.dll
//Now prepare your message.
MailMessage mail = new MailMessage();
mail.To.Add("someone@somedomail.com");
mail.From = new MailAddress("tome@somedomain.com");
mail.Subject = "Send email without SMTP server";
mail.Body = "Yep, its workin!!!!";
//Send message
string domain = mail.To[0].Address.Substring(mail.To[0].Address.IndexOf('@') + 1);
SendSMTP.SmtpDirect.SmtpServer = SendSMTP.DnsLookUp.GetMXRecords(domain)[0];
SendSMTP.SmtpDirect.Send(mail);
Have look at ::url to personal webpage removed per site useage policies:: for complete details.
Done!
Tx.
Dipak.