Sending E-Mails from Excel

  • Thread starter Thread starter BillCPA
  • Start date Start date
B

BillCPA

I have a subroutine in Excel that sends out e-mails in Outlook. Works
perfectly, except that it doesn't use my standard layout (style) nor does it
insert a signature. Can anyone help me get that to work?
 
you set the Body property to new text rather than appending to Body if Word
is not the email editor.

Set ObjPop = ObjPop.Controls("Signature")
ObjPop.Reset
Set ObjCtl = ObjPop.Controls.Item("name of signature")
 
Back
Top