Email from Access form

awosti

New member
Local time
Tomorrow, 08:00
Joined
Jun 16, 2014
Messages
1
Hi there...I'm an amateur Access developer and need help with tweaking the following code. The code works perfectly except that a random "0" appears in the body of the email. Please can anyone explain how to correct the code to remove this annoying little "0"?

Many thanks in advance :)

Private Sub Command62_Click()
Dim strSubject As String
strSubject = Me.LoadNo
DoCmd.SendObject _
, _
, _
, _
"emailadress@"blahblah.com, _
, _
, _
"Load Update : " & strSubject, _
False
End Sub
 
You've haven't included what is the most vital piece of code, how you set/create the email body

David
 

Users who are viewing this thread

Back
Top Bottom