Tenho uma rotina , descrita abaixo, para enviar e-mail através do sistema.
No entanto, ocorre erro "Servidor not avaiable"
Os parâmetros estão todos corretos.
Onde estou errando ?
With Config
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = SMTP
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 587
.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False
.Fields("http://schemas.microsoft.com/cdo/configuration/sendusername") = emailremetente
.Fields("http://schemas.microsoft.com/cdo/configuration/sendpassword") = SENHA
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 120
.Fields.Update
End With
Set Mens = New CDO.Message
With Mens
Set .Configuration = Config
fromnome = emailremetente
.From = fromnome
sendernome = nomeusuario
.Sender = sendernome
mailremetente = emailremetente
replynome = mailremetente
.ReplyTo = replynome
.BodyPart.Charset = "utf-8"
DIAPROCESS = Combinação29.Value
.Subject = "Caixa do dia " & DIAPROCESS & "/" & MesProcess & "/" & AnoProcess & " " & Empresa
.HTMLBody = " "
nometo = nomedestinatario
.To = nometo
comcopia = comcopia
.CC = comcopia
caminho = CurrentProject.path & "/pdf/fluxototalizado.pdf"
.AddAttachment (caminho)
caminho = CurrentProject.path & "/pdf/resumofinal.pdf"
.AddAttachment (caminho)
caminho = CurrentProject.path & "/pdf/Movimentocaixa.pdf"
.AddAttachment (caminho)
.Send
End With
No entanto, ocorre erro "Servidor not avaiable"
Os parâmetros estão todos corretos.
Onde estou errando ?
With Config
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = SMTP
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 587
.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False
.Fields("http://schemas.microsoft.com/cdo/configuration/sendusername") = emailremetente
.Fields("http://schemas.microsoft.com/cdo/configuration/sendpassword") = SENHA
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 120
.Fields.Update
End With
Set Mens = New CDO.Message
With Mens
Set .Configuration = Config
fromnome = emailremetente
.From = fromnome
sendernome = nomeusuario
.Sender = sendernome
mailremetente = emailremetente
replynome = mailremetente
.ReplyTo = replynome
.BodyPart.Charset = "utf-8"
DIAPROCESS = Combinação29.Value
.Subject = "Caixa do dia " & DIAPROCESS & "/" & MesProcess & "/" & AnoProcess & " " & Empresa
.HTMLBody = " "
nometo = nomedestinatario
.To = nometo
comcopia = comcopia
.CC = comcopia
caminho = CurrentProject.path & "/pdf/fluxototalizado.pdf"
.AddAttachment (caminho)
caminho = CurrentProject.path & "/pdf/resumofinal.pdf"
.AddAttachment (caminho)
caminho = CurrentProject.path & "/pdf/Movimentocaixa.pdf"
.AddAttachment (caminho)
.Send
End With