I'm using the macro below to reply to emails through Outlook but the picture in my signature is not displaying correctly. There is a red x in place of the picture when the reply email populates. How can I get the picture (which is my signature) to display correctly?
VBA Code:
Sub ReplywithJournal()
Dim origEmail As MailItem
Dim replyEmail As MailItem
Set origEmail = Application.ActiveWindow.Selection.Item(1)
'**The reply with your template
Set replyEmail = Application.CreateItemFromTemplate("C:\Users\carl22\OneDrive - phantom\Documents\Templates\Outlook\Journal Submitted.oft")
replyEmail.To = origEmail.Sender
replyEmail.CC = origEmail.CC
replyEmail.Subject = origEmail.Subject
replyEmail.HTMLBody = replyEmail.HTMLBody & origEmail.Reply.HTMLBody
replyEmail.Display
End Sub