I found this code, but it doesn't include the signature. In all the resources I've read, I couldn't come up with a solution.
Public Function Email_Test()
Dim MyOutlook As Outlook.Application
Dim MyMail As Outlook.MailItem
Dim objOutlook As Object
Dim Attach As String
Set MyOutlook = New Outlook.Application
Set MyMail = MyOutlook.CreateItem(olMailItem)
MyMail.To = "[email protected]" '**put in reference to form
'MyMail.CC = MailList("Copy To")
MyMail.Subject = "This Is A Test Email" '**put in reference for subject
MyMail.Body = "Hi," & vbNewLine & vbNewLine & "See attached."
'MyMail.Send
MyMail.Display
Set MyMail = Nothing
Set MyOutlook = Nothing
End Function