I have set a macro in excel to create email need to have the Outlook signature line for the sender.
Tried .htmlbody= sig Signature = .htmlbody
Dim Email_Subject, Email_Send_To, _ Email_Body As String Dim Mail_Object, Mail_Single As Variant
Email_Subject = Range("B7").Value
Email_Send_To = Range("B9").Value
Email_Body = Range("B8").Value
On Error GoTo debugs
Set Mail_Object = CreateObject("Outlook.Application")
Set Mail_Single = Mail_Object.CreateItem(0)
With Mail_Single
.Subject = Email_Subject
.To = Email_Send_To
.Body = Email_Body
.Display
End With
I want to have the person that is sending the email default signature from outlook show at bottom of email.