Thread: VBA and Mail
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mike Mike is offline
external usenet poster
 
Posts: 3,101
Default VBA and Mail

I've got a script that generates e-amil for me. Everything works fine, but I
want to add a signature. Is there some way to have the script use a premade
signature or template? Here's the script.

With objMail
' .BCC = jr3411
.To = ADDY$
.Subject = oSheet.Cells(4, 3).Value & " - " & oSheet.Cells(1, 2).Value &
" - " & oSheet.Cells(5, 3).Value
.Body = MSG$ & vbCrLf & vbCrLf & cKt$


.Display



End With