I am having trouble using SendMail over ASP, can someone help me?
I am trying the following:
Set msg = Server.CreateObject("SendMail.Message")
With msg
.host="server.turno.com"
.Logging = true
.silent = true
.From = "
[email protected]"
.FromName = "Support Team"
.AddRecipient = rsSen("email")
.Subject = "Lembrete de Senha"
.Body = texto2
.HTMLBody = "<P>" & texto2 & "</P>"
.Send
End With
Thanks