Diablicolic Posted August 4, 2003 Posted August 4, 2003 E-mail Error Picture Link Try that picture, I can't figure out what I'm doing wrong, and look at the bottom right side, I thought I had the right server too :mad: , me no understanday! Quote "Reality is fake, Dreams are for real"
Leaders dynamic_sysop Posted August 4, 2003 Leaders Posted August 4, 2003 assuming you have a reference to System.Web ( or it wouldnt allow you to get as far as you have ) this should work. are you specifying the correct mail server? eg: mail.hotmail.com here's a quick sample i built up that works for me: Dim eMail As New Mail.MailMessage() With eMail .To = "csharp_@hotmail.com" .From = "dynamic" .Subject = "mail test" .Body = "some text" .BodyFormat = Mail.MailFormat.Text Mail.SmtpMail.SmtpServer = "mail.hotmail.com" '/// mail server Mail.SmtpMail.Send(eMail) End With Quote
Diablicolic Posted August 4, 2003 Author Posted August 4, 2003 :) Thank you Quote "Reality is fake, Dreams are for real"
Winston Posted August 4, 2003 Posted August 4, 2003 you should also stick it in a Try Catch statement Quote
Kurt Posted January 12, 2004 Posted January 12, 2004 This code piece doesn't seem to do the trick for me. Do I need to log in to Hotmail first? Or should I be able just to use the hotmail SMTP server without further? Quote qrt
iebidan Posted January 12, 2004 Posted January 12, 2004 I posted a few days ago a code on how to send emails without the CDO's, can't remember the link, but was a recent one Regards Quote Fat kids are harder to kidnap
samsmithnz Posted January 12, 2004 Posted January 12, 2004 There is a huge resource on sending emails here: http://www.systemwebmail.com/ Quote Thanks Sam http://www.samsmith.co.nz
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.