Macro para insertar una firma en Outlook que contenga texto e imagen
A ver si me pueden ayudar.
Tengo la siguiente macro para enviar un correo electrónico cuando ejecuto una Macro en Excel, pero no puedo insertarle una firma con texto e imagen.
La macro que tengo es:
im oLook As Object
Dim oMail As Object
Set oLook = CreateObject("Outlook.Application")
Set oMail = oLook.createitem(0)
With oMail
.To = "[email protected]; [email protected]"
.body = "TEXTO DEL CORREO"
.body = " "
.body = "OTRO TEXTO DEL CORREO."
.Subject = "REPORTE ACTUALIZADO"
.Send
End With
Set oMail = Nothing
Set oLook = Nothing
1 Respuesta
Respuesta de Dante Amor
1