Because this don't work?
Dim SMTP As SMTP
SMTP.HtmlBody = True
SMTP.Initialize("smtp.gmail.com", 465, "[email protected]", "password", "SMTP")
SMTP.UseSSL = True
SMTP.To.Add("[email protected]")
SMTP.Subject = "Test"
SMTP.Body = "<!DOCTYPE html><html><body><table border=1><tr><td>teste</td></tr></table></body></html>"
SMTP.Send
The result is:"<!DOCTYPE html><html><body><table border1><tr><td>teste</td></tr></table></body></html>"
and not the table html
thanks
Dim SMTP As SMTP
SMTP.HtmlBody = True
SMTP.Initialize("smtp.gmail.com", 465, "[email protected]", "password", "SMTP")
SMTP.UseSSL = True
SMTP.To.Add("[email protected]")
SMTP.Subject = "Test"
SMTP.Body = "<!DOCTYPE html><html><body><table border=1><tr><td>teste</td></tr></table></body></html>"
SMTP.Send
The result is:"<!DOCTYPE html><html><body><table border1><tr><td>teste</td></tr></table></body></html>"
and not the table html