OUTLOOK 2010- bypassing an email rule - Microsoft Community
Office / Outlook / Windows 10 / Office 2010
i have set rule delay sending of emails 1 minute. occasionally, need send immediately. there keystroke or combination of keystrokes bypass rule 1 time. for example, instead of f9, use cntl+f9, etc. thanks,
lar
there´s no shortcut that. i´d vba. combine these 2 samples:
copy one:
http://www.vboffice.net/en/developers/send-and-delete-email
and add line above "public sub..." line:
private m_sendnow boolean
replace
mail.deleteaftersubmit
by
m_sendnow=true
and delete if block msgbox.
for better understanding i´d rename sendanddelete sendimmediately, instance.
then below of paste first 1 here:
http://www.vboffice.net/en/developers/send-delay
and replace mail.deferreddeliverytime line this:
if m_sendnow=false then
mail.deferreddeliverytime=dateadd("m",1,now)else
m_sendnow=false
endif
now don´t need rule anymore. if want send immediately, call first procedure pressing alt+f8, instance. or customize ribbon call by button click.
Office / Outlook / Windows 10 / Office 2010
Comments
Post a Comment