ho scritto questa macro per inviare mail da una casella di posta legata ad un sito con host Aruba.
Sub invio_mail_aruba()
Set cdomsg = CreateObject("CDO.message")
With cdomsg.Configuration.Fields
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'NTLM method
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtps.aruba.it"
.Item("http://schemas.microsoft.com/cdo/configuration/smptserverport") = 465
.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True
.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "xxx@xxxxx.it"
.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "yyyyyyy"
.Update
End With
strbody = "testo da inviare"
With cdomsg
.To = "zzz@zzzzzzzz.it"
.From = "xxx@xxxxx.it"
.Subject = "soggetto"
.TextBody = strbody
.CC = ""
.BCC = ""
.AddAttachment "C:\XXXX\XXXXXXX.pdf"
.Send
End With
Set cdomsg = Nothing
End Sub
quando la eseguo mi da' il seguente errore:
Errore di run-time '-2147220973 (80040213)':
Il trasporto non è riuscito a connettersi al server
Qualcuno potrebbe suggerirmi come modificare il codice per farlo funzionare?
Grazie