Roderick_E
Well-known Member
- Joined
- Oct 13, 2007
- Messages
- 2,051
In my code snippet below I am checking checkbox2 to see if the user wants to display the email before sending. If TRUE, just send without display. Unfortunately if it sends without display, the person's default signature doesn't get included in the email. WHY??? I don't understand. Please help thanks.
Code:
With OlMail
If Trim(mySender) <> "" Then
.SentOnBehalfOfName = mySender
End If
If mailform.CheckBox2.Value = False Then
.display
End If
.To = recips
.Subject = stSubject
.HTMLBody = vaMsg & Signature & "
" & .HTMLBody
If mailform.CheckBox2.Value = True Then
.Send
End If
End With
Last edited: