is there any option to send mail to specific person everyday at 3:00 PM sharp, even when the system is not connected to internet

Rohith1324

Board Regular
Joined
Feb 27, 2018
Messages
114
Hi,

I have a requirement that everyday sharp at specific time I want an email to be triggered from my outlook even when i'm not connected to internet.

Body of the mail remain same all the days
Receiver will remain same all the days

Regards,
Rohith
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
If you are not connected to the internet what is it going to use to send :unsure:
 
Upvote 0
If you are not connected to the internet what is it going to use to send :unsure:
Just like few Addins we have in the outlook ...if you schedule the recurring message it automatically send the mail at specific time.

Not sure if I can take the name...but the addin is Boomerang
 
Upvote 0
Yes but if you have no connection what is it going to transmit via (a bit like having a landline phone and pulling out the phone line.. would you expect to make a call?)
 
Upvote 0
Yes but if you have no connection what is it going to transmit via (a bit like having a landline phone and pulling out the phone line.. would you expect to make a call?)
Yes, I really understand your question...but through the add I was able to setup the scheduler and even I was not connected it triggered the mail..

Not sure if the addin is used to store the message somewhre and release it at particular time.
 
Upvote 0
Yes, I really understand your question...but through the add I was able to setup the scheduler and even I was not connected it triggered the mail..

Not sure if the addin is used to store the message somewhre and release it at particular time.
but the addin is not affordable to send for recurring messages to I was thinking if we can do with the help of any VBA code
 
Upvote 0
As far as I know Boomerang doesn't send it at the time, it schedules it so it sits in your Outbox until you are online then it gets transmitted.

If that is all you are trying to do then the below code seems to do it if both Excel and Outlook are open (change the email address to a real email address).
VBA Code:
Public Sub Example()
    Dim OutApp As Object
    Dim OutMail As Object

    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)

    On Error Resume Next
    With OutMail
        .to = "me@whatever.com"
        .CC = ""
        .BCC = ""
        .Subject = "This is the Subject line"
        .Body = "Hi there"
        .DeferredDeliveryTime = DateSerial(Year(Now), Month(Now), Day(Now)) + #4:00:00 PM#
        .Send
    End With
    On Error GoTo 0

    Set OutMail = Nothing
    Set OutApp = Nothing
End Sub

Then use Windows scheduler to run the macro sometime before 3pm each day.
 
Last edited:
Upvote 0
As far as I know Boomerang doesn't send it at the time, it schedules it so it sits in your Outbox until you are online then it gets transmitted.

If that is all you are trying to do then the below code seems to do it if both Excel and Outlook are open (change the email address to a real email address).
VBA Code:
Public Sub Example()
    Dim OutApp As Object
    Dim OutMail As Object

    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)

    On Error Resume Next
    With OutMail
        .to = "me@whatever.com"
        .CC = ""
        .BCC = ""
        .Subject = "This is the Subject line"
        .Body = "Hi there"
        .DeferredDeliveryTime = DateSerial(Year(Now), Month(Now), Day(Now)) + #4:00:00 PM#
        .Send
    End With
    On Error GoTo 0

    Set OutMail = Nothing
    Set OutApp = Nothing
End Sub

Then use Windows scheduler to run the macro sometime before 3pm each day.
Thank you will try but I have 2 questions...

One you said excel to be open ? So what exactly I have to keep in excel

Second one you said window scheduler...I'm bit confused about this..
 
Upvote 0
One you said excel to be open ? So what exactly I have to keep in excel
An Excel file with the macro in (scheduler will open the file)
 
Upvote 0

Forum statistics

Threads
1,215,029
Messages
6,122,755
Members
449,094
Latest member
dsharae57

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top