Send email via gmail.com (wodSmtp)
Hi Jeff.
Sending email using gmail is pretty straightforward - try something like this:
wodSmtp1.Hostname = "smtp.gmail.com"
wodSmtp1.Login = "your_gmail_login"
wodSmtp1.Password = "your_gmail_password"
wodSmtp1.Authentication = AuthLogin
wodSmtp1.Security = SecurityImplicit
wodSmtp1.Blocking = True
wodSmtp1.CreateTextHtml "someone@gmail.com", "some@other.email.com", "This is a test", "", "<HTML>this is a test</HTML>"
wodSmtp1.SendMessage
Hope this helps!
Jasmine
Complete thread:
- Send email via gmail.com - Jeff.sajedi, 2014-12-29, 20:24
- Send email via gmail.com - Jasmine, 2014-12-29, 20:49