"Accept + Send the Response now", VBA script?

Status
Not open for further replies.

Viggo_L

Member
Outlook version
Outlook 2010 32 bit
Email Account
Exchange Server
With nearly all meeting invites, I accept and press "Send response now" from the drop-down. Is there any clever way to make it more effecient?

Maybe a VBA script?

Or is there a menu option I havent been able to find?
 
You can autoaccept using rules, so you could use vba to autoaccept manually too -

http://www.slipstick.com/outlook/calendar/autoaccept-a-meeting-request-using-rules/

To use manually, try this

Sub AutoAcceptMeetings()

Dim oRequest As MeetingItem

Dim oAppt As AppointmentItem

Set oRequest = GetCurrentItem()

Set oAppt = oRequest.GetAssociatedAppointment(True)

Dim oResponse
Set oResponse = oAppt.Respond(olMeetingAccepted, True)
oResponse.Display ' or use .Send instead

End Sub
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
diver864 vba for a rule to automatically accept meeting requests with 'vacation' in subject, change to all-day event, change to free, don't send reply Outlook VBA and Custom Forms 1
M Outlook settings will not accept a password Using Outlook 9
Paul Hobbs Automatically accept "Empty Folders" prompt Outlook VBA and Custom Forms 6
E Can't accept or decline task (no button appears) Using Outlook 2
A Auto Accept Meetings from the General Calendar Using Outlook 3
M Configure outlook 2007 to accept digital signatures Using Outlook 2
D Custom Form Accept and Reject Command buttons Outlook VBA and Custom Forms 2
G Auto accept meeting request for non primary account Outlook VBA and Custom Forms 1
B Meeting Accept option greyed out Using Outlook 0
J Auto Accept Notifications from a shared icloud calendar? Using Outlook 4
A Tentative accept a meeting without sending a message Outlook VBA and Custom Forms 2
J Recurring meeting - i require a monthly accept confrimation Using Outlook 1
P Have to accept Outlook 2010 invitation twice Using Outlook 0
A Outlook Offers No "Accept" Option for .ics Files Using Outlook 5
H Cannot accept tasks from outlook 2013 or even from web Using Outlook 7
W Add to Calendar links - auto accept with macro Using Outlook 1
B Unable to Accept meetings that are already Tentatively accepted Using Outlook 2
B Outlook 2010 asking for password constantly, won't accept correct one Using Outlook 5
B cant accept iCal calendar invites in Outlook 2007 (SP3) Using Outlook 4
C Can you have Outlook automatically accept Tasks for you? Using Outlook 7
W Cannot accept tasks... Using Outlook 15
S Must accept EULA everytime Outlook 2003 opens in Windows 7 Using Outlook 3
B conference rooms, accept agent, resources Exchange Server Administration 5
V Auto-accept meeting cancelation Outlook VBA and Custom Forms 1
C Synchronization and taking forever to send Using Outlook 2
D Send on behalf of does not store the base mailbox Using Outlook 0
R Outlook 365 VBA AUTO SEND WITH DELAY FOR EACH EMAIL Outlook VBA and Custom Forms 0
S Outlook 2002- "Send" button has disappeared. Help please. Using Outlook 1
TomHuckstep Remove Send/Receive All Folders (IMAP/POP) button from Outlook 365 Ribbon Using Outlook 2
J Macro to send email as alias Outlook VBA and Custom Forms 0
F Add a category before "Send an Email When You Add an Appointment to Your Calendar" Outlook VBA and Custom Forms 0
W Outlook 365 I am getting the "Either there is no default mail client" error when I try to send an email on excel Office 365 Using Outlook 1
T Outlook 2010 recipient no longer shows in 'Send To' Using Outlook 0
Witzker Outlook 2019 Macro to send an Email Template from User Defined Contact Form Outlook VBA and Custom Forms 0
Geldner Tweak Junk Email Reporting tool to default to particular email on send? Using Outlook 3
Geldner Send / Receive a particular group via macro or single keypress Using Outlook 1
E Outlook - Macro - send list of Tasks which are not finished Outlook VBA and Custom Forms 3
L How to avoid issues with "Send on Behalf" Using Outlook 3
M Outlook 365 refuses to send email Using Outlook 0
A Change settings Send/receive VBA Outlook VBA and Custom Forms 0
M I cant send emails via Outlook in my W10 PC. Using Outlook 3
K Run a script rule to auto 'send again' on undeliverable emails? Outlook VBA and Custom Forms 1
G Send a greeting message to a contact on birthday Outlook VBA and Custom Forms 5
T Outlook creates a copie of every mail I send Using Outlook.com accounts in Outlook 4
R How to restrict GWSMO sync to Outlook Send/Receive cycles Using Outlook 0
M Outlook, send to > mail recipient - results in plain text email Using Outlook 1
A Unflag Inbox and Flag Inbox with Orange Category After Item is send Outlook VBA and Custom Forms 3
glnz O365 - How to send from acct 2 but showing email name from acct 1 as From - alias? Using Outlook 0
S Outlook Macro to send auto acknowledge mail only to new mails received to a specific shared inbox Outlook VBA and Custom Forms 0
PGSystemTester VBA To Change AppointmentItem.BusyStatus From MeetingItem Before Send Using Outlook 0

Similar threads

Back
Top