Hello
I have 2 mails accounts ([email protected] and [email protected])
I would like to select by vba one specific account (for example, [email protected])
when I send the mail.
Any caritative soul could help me?
this is part of my code
With OutMail
.To = destinatario
.CC = ""
.BCC = ""
.Subject = "Cotización penprom.com"
.HTMLBody = EmailBody & StrSignature
.Importance = olImportanceHigh
.Attachments.Add "C:\Users\Claudio\OneDrive\Penprom\Cotizaciones\Cot_2017\pp_cot_2017_pdf\" & ("#") & Range("B1") & ("--") & Range("r1").Value & Format(Date, "ddmmmyyyy") & ("-") & Range("B3") & ("-") & "pp.pdf"
.Display
End With
Bookmarks