View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Crazyhorse Crazyhorse is offline
external usenet poster
 
Posts: 18
Default Email from Excel Function

Set oOMail = oOApp.CreateItem(olMailItem)
With oOMail
.Display
.Body = eBody
.To = eTo
.CC = ecc
.Attachments.Add eAttach, olByValue, 1
.Subject = eSubject

.Send
End With


How do I add my signature?

Thanks