Hello modytane,
Here is a macro I wrote to delay the sending of an email. You specify the data and time for the email to be sent. This can be easily adapted for your use. I can make the necessary changes if you like.
'Written: October 19, 2008
'Author: Leith Ross
'Summary: Delays sending an email until a certain Date-Time using Outlook.
Sub DelaySendingEmail()
Dim Msg As String
Dim olApp As Object
Dim olEmail As Object
Dim SendAt As String
Dim SendTo As String
Dim Subj As String
SendTo = "LeithRoss@gmail.com"
Subj = "Delayed Email test"
Msg = "No message."
SendAt = "10/19/2008 12:30am" 'Date-Time must be in this format
On Error Resume Next
Set olApp = GetObject(, "Outlook.Application")
If Err = 429 Then
Err.Clear
Set olApp = CreateObject("Outlook.Application")
End If
On Error GoTo 0
olApp.Session.Logon
Set olEmail = olApp.CreateItem(olMailItem)
With olEmail
.DeferredDeliveryTime = SendAt
.To = SendTo
.Subject = Subj
.Body = Msg
.Send
End With
olApp.Session.Logoff
Set olApp = Nothing
Set olEmail = Nothing
End Sub
Sincerely,
Leith Ross
Bookmarks