Hi
How do you send e-mail using a reminder in Outlook. Please see below, I want to send an e-mail message with an attachment
How do you send e-mail using a reminder in Outlook. Please see below, I want to send an e-mail message with an attachment
Code:
Sub Application_Reminder(ByVal Item As Object)
Select Case Item.Class
Case olAppointment
If Item.Subject = "Test" Then
'Set EApp = CreateObject("excel.Application")
'With EApp
' Change file name to suit
' .Visible = True
' End With
EmailTest ' An excel macro **
End If
End Select
End Sub