Code:
Private Sub cmdEmail_Contact_Click()
On Error GoTo Err_Handler
Dim strTo As String
Dim strSubject As String
Dim strMessageText As String
Me.Dirty = False
strTo = Me.EmailAddress
strSubject = ""
strMessageText = ""
' Me.[Firstname] & ":" & _
vbNewLine & vbNewLine & _
Exit_Here:
Exit Sub
Err_Handler:
MsgBox Err.Description
Resume Exit_Here
End Sub
i am trying to send an e.mail without an attachment using the " e.mail customer "button but it is not working. it dont run and i dont know why
thanks steve