Re: Difference between wodSmtp1.SendMessage and w (General questions)
Hi,
If you want to send email using your gmail account you should try something like this:
http://example.weonlydo.com/index.asp?did=Sending-email-messages-to-Gmail-using-SMTP-pr...
as you can see you should first authenticate with Gmail server.
You can also send email using your ISP and your ISP SMTP server.
In order to do that you should add this code before your code:
[code]wodSmtp1.HostName = your.isp.smtp.hostname
wodSmtp1.Blocking = True
wodSmtp1.Connect[/code]
Drazen