Insertar firma en un mail enviado desde Excel
Tengo una macro en un Excel que manda un mail por Outlook pero no me toma la firma que tengo configurado insertar en cada mail.
Como el mail puede ser enviado por diferentes personas, no me conviene agregar la firma en el cuerpo de la macro.
Para facilitarles la ayuda que me dan, les paso el código que uso.
A la espera de una respuesta, lo saluda,
Sebastián.-
Set OutApp = CreateObject("Outlook.Application")
OutApp.Session.Logon
Set OutMail = OutApp.CreateItem(0)
With OutMail
.To = Sent_To
.CC = ""
.BCC = ""
.Subject = "Open PO Report - Needs your attention"
.Body = "Dear " & NombreReq & ":" & Chr(10) & Chr(10) & "Attached you'll find a worksheet with all the Open PO that were required by you." & Chr(10) & "Please let us know which one we have to close." & Chr(10) & "Hoping to hear from you soon," & Chr(10) & Chr(10)
.Attachments.Add Destwb.FullName
.Send
End With
On Error GoTo 0
.Close SaveChanges:=False
End With
Como el mail puede ser enviado por diferentes personas, no me conviene agregar la firma en el cuerpo de la macro.
Para facilitarles la ayuda que me dan, les paso el código que uso.
A la espera de una respuesta, lo saluda,
Sebastián.-
Set OutApp = CreateObject("Outlook.Application")
OutApp.Session.Logon
Set OutMail = OutApp.CreateItem(0)
With OutMail
.To = Sent_To
.CC = ""
.BCC = ""
.Subject = "Open PO Report - Needs your attention"
.Body = "Dear " & NombreReq & ":" & Chr(10) & Chr(10) & "Attached you'll find a worksheet with all the Open PO that were required by you." & Chr(10) & "Please let us know which one we have to close." & Chr(10) & "Hoping to hear from you soon," & Chr(10) & Chr(10)
.Attachments.Add Destwb.FullName
.Send
End With
On Error GoTo 0
.Close SaveChanges:=False
End With
1 Respuesta
Respuesta de paramisolo
1