GoodMorning All
My code below is supposed to send automatic emails but it generates the following error "Invalid Use Of Property" when i compile it, how do i get rid of this error...?
Private Sub Form_Timer()
If TimeValue(Now) > CDate("07:00") Then
DoCmd.SendObject
Me.TimerInterval = 0
acSendReport , "WaldinPODetails", _
acFormatPDF, "support@magcc.co.za", , , _
"Reminder Of Parts Not Deleivered", _
"Good Morning, please recieve this reminder to state that the following parts has not been delivered", _
False
End If
End Sub
My code below is supposed to send automatic emails but it generates the following error "Invalid Use Of Property" when i compile it, how do i get rid of this error...?
Private Sub Form_Timer()
If TimeValue(Now) > CDate("07:00") Then
DoCmd.SendObject
Me.TimerInterval = 0
acSendReport , "WaldinPODetails", _
acFormatPDF, "support@magcc.co.za", , , _
"Reminder Of Parts Not Deleivered", _
"Good Morning, please recieve this reminder to state that the following parts has not been delivered", _
False
End If
End Sub
Last edited: