I am working on some code which creates an Outlook Meeting request, and I'd like for it to send to a list of invitees. I'm able to create the Meeting Request, but I am unable to send it. I can see the Meeting Request in my Calendar. How can I get it to send?

Here's my code:

Sub AddAppointments()
' Create the Outlook session
Set myOutlook = CreateObject("Outlook.Application")

' Start at row 2
r = 2

Do Until Trim(Cells(r, 1).Value) = ""
    ' Create the AppointmentItem
    Set myApt = myOutlook.CreateItem(1)
    ' Set the appointment properties
    myApt.Subject = Cells(r, 1).Value
    myApt.Location = Cells(r, 2).Value
    myApt.Start = Cells(r, 3).Value
    myApt.Duration = Cells(r, 4).Value
    myApt.Recipients.Add Cells(r, 8).Value
    myApt.MeetingStatus = olMeeting
    myApt.ReminderMinutesBeforeStart = 88
    myApt.Recipients.ResolveAll
    myApt.AllDayEvent = AllDay


    ' If Busy Status is not specified, default to 2 (Busy)
    If Trim(Cells(r, 5).Value) = "" Then
        myApt.BusyStatus = 2

    Else
        myApt.BusyStatus = Cells(r, 5).Value

    End If
    If Cells(r, 6).Value > 0 Then
        myApt.ReminderSet = True
        myApt.ReminderMinutesBeforeStart = Cells(r, 6).Value
    Else
        myApt.ReminderSet = False
    End If
    myApt.Body = Cells(r, 7).Value
    myApt.Save
    r = r + 1
    myApt.Send
Loop
End Sub
link|improve this question
What happens when you run the code? Any errors, Outlook Security warnings etc? – brettdj Nov 20 '11 at 8:01
I am not getting any error. The problem is that meeting request is not sent out of outlook – user1056087 Nov 20 '11 at 15:50
did you check the needed reference? (I think you would have an error if not) Did you add an Option Explicit at the begining of your code (before the first Sub)? If you still don't raise any error, try to execute only some parts of your code with hard-coded values, especialy what doesn't work (e.g. sending your appointment) – JMax Nov 20 '11 at 20:13
I have tried with Option Explicit, Compiler error. – user1056087 Nov 20 '11 at 20:56
And istead of myApt.Send, I have used myApt.Display, Display of meeting request comes...........Only problem is that when i use myApt.Send, it is not sending mail out for this meeting request – user1056087 Nov 20 '11 at 20:58
feedback

1 Answer

Without a sample row of values, it's hard to debug this code. So we are only going on your word that it is valid. But I did fix up the code a bit.

  • You have ReminderMinutesBeforeStart twice in your code. I removed the first one because it looks like it is dependent upon row data.
  • You call the ResolveAll method, but don't check to see if your recipients resolved. If they are email addresses, I wouldn't bother.
  • There is a mix of early and late bound references. For example, you use 1 instead of olAppointmentItem, but later use olMeeting instead of 1.
  • The AllDayEvent Property takes a boolean value, but as you haven't declared any variables we have no way to tell what AllDay means. I converted this to read from column I. Also note that if you set AllDayEvent to True, you would not need to set Duration.

Assuming valid input values, this code worked for me:

Option Explicit

Sub AddAppointments()

  Dim myoutlook As Object ' Outlook.Application
  Dim r As Long
  Dim myapt As Object ' Outlook.AppointmentItem

  ' late bound constants
  Const olAppointmentItem = 1
  Const olBusy = 2
  Const olMeeting = 1

  ' Create the Outlook session
  Set myoutlook = CreateObject("Outlook.Application")

  ' Start at row 2
  r = 2

  Do Until Trim$(Cells(r, 1).value) = ""
    ' Create the AppointmentItem
    Set myapt = myoutlook.CreateItem(olAppointmentItem)
    ' Set the appointment properties
    With myapt
      .Subject = Cells(r, 1).value
      .Location = Cells(r, 2).value
      .Start = Cells(r, 3).value
      .Duration = Cells(r, 4).value
      .Recipients.Add Cells(r, 8).value
      .MeetingStatus = olMeeting
      ' not necessary if recipients are email addresses
      ' myapt.Recipients.ResolveAll
      .AllDayEvent = Cells(r, 9).value

      ' If Busy Status is not specified, default to 2 (Busy)
      If Len(Trim$(Cells(r, 5).value)) = 0 Then
        .BusyStatus = olBusy
      Else
        .BusyStatus = Cells(r, 5).value
      End If

      If Cells(r, 6).value > 0 Then
        .ReminderSet = True
        .ReminderMinutesBeforeStart = Cells(r, 6).value
      Else
        .ReminderSet = False
      End If

      .Body = Cells(r, 7).value
      .Save
      r = r + 1
      .Send
    End With
  Loop
End Sub

Sample input values in cells (incl. header row):

  • A2: My Meeting
  • B2: My Desk
  • C2: 11/25/2011 13:30:00 PM
  • D2: 30
  • E2: 2
  • F2: 30
  • G2: Let's have a meeting!
  • H2: -email address-
  • I2: FALSE
link|improve this answer
Hi it is worked well......................U R really King in VBA – user1056087 Nov 22 '11 at 0:03
If this answer helped you, consider accepting it so others can see that your problem was solved. – JP. Nov 22 '11 at 13:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.