I have found and modified the following code to get me started in the direction I want to go. However I need help expanding it. Can I modify this code to prompt for an attachment and add a signature in the subject?
Signature being something like
John Smith
555-555-5555
Signature being something like
John Smith
555-555-5555
Code:
Private Sub Command794_Click()
On Error GoTo Err_Command794_Click
Dim SendTo As String, MySubject As String, MyMessage As String
SendTo = ""
MySubject = Me.[Store #] & " " & Me.Subject & " - Task #" & Me.[Task ID]
MyMessage = ""
DoCmd.SendObject acSendNoObject, , , SendTo, , , MySubject, MyMessage, True
Exit_Command794_Click:
Exit Sub
Err_Command794_Click:
MsgBox Err.Description
Resume Exit_Command794_Click