Outlook appointment in asp.classic

Status
Not open for further replies.

Mahasure

New Member
Outlook version
Older version
Email Account
Exchange Server
Hi Team, I wanted to send event confirmation to user in form of outlook appointment and my code is in ASP.Classic, windows server 2000 and outlook is not installed.
when i execute below code .. my webpage hangs up..
Sub SendMeetingRequest()
Dim objOL 'As Outlook.Application
Dim objAppt 'As Outlook.AppointmentItem
Const olAppointmentItem = 1
Const olMeeting = 1
Set objOL = CreateObject("Outlook.Application")
Set objAppt = objOL.CreateItem(olAppointmentItem)
With objAppt .Subject = "My Test Appointment"
.Start = Now + 1
.End = DateAdd("h", 1, .Start) ' make it a meeting request
.MeetingStatus = olMeeting
.RequiredAttendees = "someone@somewhere.dom"
.Send
End With
Set objAppt = Nothing
Set objOL = Nothing
End Sub
Is that because outlook is not installed in my server? if yes then please let me know other solution because i dont want to install anything on my server
Please help
 
Hi Daine,
Thanks for your reply.

I tried CDO, and tried to install CDO(ver 1.2.1) in my local machine but it says that i need to Install Outlook 2007 first
and then the CDO installation was cancelled automaticaly
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
M using excel to sort outlook appointment items Outlook VBA and Custom Forms 4
S New Outlook Appointment - Select All Body Text and Change Font and Size Outlook VBA and Custom Forms 1
W Space in an Outlook appointment body Using Outlook 0
S View Appointment in Text Wrap in Outlook 2007 Month Calendar View Using Outlook 0
Diane Poremsky Create an Outlook appointment from an email message Using Outlook 4
N Adding Appointment Item in Outlook to Shared Calendar Folder Outlook VBA and Custom Forms 7
J Outlook calendar...How to add an event or appointment without a border around it? Using Outlook 9
F Outlook 2010 Search Appointment Notes Using Outlook 0
Tech Checkers Make Outlook add Contact Card Address in Location Field based on Appointment Subject Name. Using Outlook 2
K Importing appointment body from excel in outlook 2010 Using Outlook 1
L Showing @live account in outlook 2013 calendar as private appointment Using Outlook 1
A iCloud add-on for Outlook: Reminder for new appointment is set to 'None' by default. How to change? Using Outlook 6
J Outlook 2010: can't forward appointment on custom form Using Outlook 1
Rijotech Outlook 2013 Appointment list custom positions? Using Outlook 2
R How to copy outlook 2010 shared calendar appointment or meeting to personal calendar by vba? Outlook VBA and Custom Forms 1
R Static Resources in Custom Outlook Appointment Form Using Outlook 2
L Outlook 2007 Code for Note Fields of Appointment Using Outlook 102
M Outlook Appointment Item exceeds beyond the date range Using Outlook 2
S Calendar deletes appointment after entry from both Outlook and Icloud calander Using Outlook 1
M Outlook Appointment item does not show the item outside the date range Using Outlook 2
H Reocurring outlook appointment (office 2010) does not update Outlook.com Using Outlook 3
C Outlook Appointment issue when synchronized with iCloud 2 Using Outlook 8
M "New Appointment from Contact" command missing from Outlook 2003 Using Outlook 1
B Outlook Calendar Appointment Problem Using Outlook 1
O Rescheduling appointment on Outlook 2010 for Windows creates duplicate entry Using Outlook 2
T Outlook makes every appointment recurring and set to the current date/time Using Outlook 2
P Create appointment to custom (shared) outlook calendar Outlook VBA and Custom Forms 3
J Outlook Appointment recurrence setting Outlook VBA and Custom Forms 4
S Custom Form overwriting the default appointment form in outlook 20 Outlook VBA and Custom Forms 1
Q How outlook Store Appointment Outlook VBA and Custom Forms 1
A Outlook can't remember outlook.com, Exchange password. Using Outlook 0
S Related messages show in main Outlook window vice new Advanced Find windows Using Outlook 1
H Force Outlook 2019 with GMail 2-Step to Require Login? Using Outlook 0
G Retaining Tabs in outlook body Using Outlook 2
V Setting up Outlook 2021 on new computer Using Outlook 2
G Add Map It button to Custom Contacts Form in Outlook Outlook VBA and Custom Forms 1
X Custom icon (not from Office 365) for a macro in Outlook Outlook VBA and Custom Forms 1
Victor_50 Problem - Google Workspace will stop "unsafe" access to Outlook end 2024 Using Outlook 3
C New pc, new outlook, is it possible to import auto-complete emailaddress Using Outlook 4
T Outlook 365 won't take new working password Using Outlook 0
S Create Outlook Task from Template and append Body with Email Body Outlook VBA and Custom Forms 4
P Can't add custom field to custom Outlook form, it always adds to the Folder instead Outlook VBA and Custom Forms 2
B Sync Outlook Public Folders to Contacts Using Outlook 2
D Delete Outlook emails from MS server Using Outlook 12
B Outlook tasks and PDF Using Outlook 4
D Outlook 2019 is no longer asking for password ... Using Outlook 5
Kika Melo How to mark as Junk any message not from Contacts (in Outlook.com) Using Outlook 3
L Outlook attachments from OneDrive as links Using Outlook 0
G Outlook 365 My iCloud Outlook doesn’t work after reinstalling Microsoft365 on Windows 10 PC – now I get error message on contacts and calendar Using Outlook 1
T How to Export & Import GMAIL Contacts into Outlook 2021 ? Using Outlook 4

Similar threads

Back
Top