I have used the following code to create a mail message attachment:
[VBA]
Set objAttach = Application.CreateItem(olAppointmentItem)
With objAttach
.Start = xStart
.End = xEnd
.Subject = xConfName & " Conference Call Instructions"
.ReminderMinutesBeforeStart = 15
.AllDayEvent = False
.Body = xMsg
.Save
End With
Set objAttachment = objItem.Attachments.Add(objAttach, olByVal, , "Conference Call ")
[/VBA]However, the Calendar item saves to the calendar of the person generating the email too. I want it to save as an attachment to the outgoing email only.

Thank you.