Connecting Tech Pros Worldwide Help | Site Map

SMTP Address for sending email

Familiar Sight
 
Join Date: Jul 2007
Location: United Kingdom
Posts: 203
#1: Apr 10 '08
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
sicarie's Avatar
Moderator
 
Join Date: Nov 2006
Location: USA
Posts: 3,929
#2: Apr 10 '08

re: SMTP Address for sending email


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

Ummmm, huh?

You need internet access (given by a provider) to do anything on the internet.

Other than that, you can google search smtp to find more about that protocol...
Familiar Sight
 
Join Date: Apr 2007
Location: Lebanon
Posts: 211
#3: May 1 '08

re: SMTP Address for sending email


Man it might be the same as the proxy in my network it is the same try it. Maybe it works


cheers
Member
 
Join Date: Jan 2008
Location: India
Posts: 92
#4: May 5 '08

re: SMTP Address for sending email


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


It is possible to send email without using user name and password.,but one thing i've not completely understand your question..., expline me, one sec i will try to help more.

Regards,
Arul
Newbie
 
Join Date: Mar 2009
Posts: 2
#5: Apr 16 '09

re: SMTP Address for sending email


Quote:

Originally Posted by Fary4u View Post

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.
NeoPa's Avatar
Administrator
 
Join Date: Oct 2006
Location: London - UK
Posts: 15,672
#6: Apr 25 '09

re: SMTP Address for sending email


Not so simple.

More and more SMTP servers (MX in DNS) are using reverse DNS lookup to ensure the sender is from where they say they are.

Not 100% reliable, I know, but it does block this sort of usage.
Reply