I am trying to edit an existing macro that sends out each row of a spreadsheet as an email. I want the macro to send out these emails in batches instead of all at once.
I am using .DeferredDeliveryTime
to do this.
The macro that I have has this at the end
Set olMail = Nothing
Set olApp = Nothing
My question is if I remove this part will my deferred emails still be sent. I am afraid these lines will close outlook and the emails won't be sent.