कैलेंडर के साथ मीटिंग अनुरोध रद्द करना
आप Aspose.Email का उपयोग करके Appointment क्लास ऑब्जेक्ट के माध्यम से मीटिंग रद्दीकरण अनुरोध भेज सकते हैं। रद्दीकरण के लिए मूल मीटिंग अनुरोध की जानकारी आवश्यक है। इस लेख का उदाहरण पहले मीटिंग अनुरोध भेजता है, जानकारी को डेटाबेस में सहेजता है और फिर संदेश ID के आधार पर अनुरोध रद्द करता है।
मीटिंग अनुरोध भेजना
से पहले कि हम कर सकें मीटिंग रद्दीकरण अनुरोध, हमें कुछ भेजना है:
- पहले संदेश भेजने के लिए SmtpClient प्रकार का एक इंस्टैंस बनाएं।
- सभी उपस्थितियों की जानकारी MailAddressCollection संग्रह में सहेजें।
- MailMessage क्लास का एक इंस्टैंस बनाएं और आवश्यक प्रॉपर्टी जैसे From, To और Subject सेट करें।
- Appointment प्रकार का एक इंस्टैंस बनाएं और लोकेशन, प्रारंभ समय, समाप्ति समय, आयोजक और उपस्थितियों की जानकारी प्रदान करें।
- सभी जानकारी को डेटाबेस में सहेजें। डेटाबेस से संबंधित कार्य SaveIntoDB मेथड में किया जा रहा है।
निम्न कोड स्निपेट दिखाता है कि मीटिंग अनुरोध कैसे भेजें।
class Attendees {
public String MessageId;
public String EmailAddress;
public String DisplayName;
}
class Message {
public String MessageId;
public String From;
public String Subject;
public String Body;
public String AppLocation;
public Date AppStartDate;
public Date AppEndDate;
public String AppSummary;
public String AppDescription;
}
public void send(Attendees[] attendeesArr, String from, String appLocation, Date appStartDate, Date appEndDate) {
try {
// Create an instance of SMTPClient
SmtpClient client = new SmtpClient("MailServer", "Username", "Password");
// Get the attendees
MailAddressCollection attendees = new MailAddressCollection();
for (Attendees a : attendeesArr) {
attendees.addItem(new MailAddress(a.EmailAddress, a.DisplayName));
}
// Create an instance of MailMessage for sending the invitation
MailMessage msg = new MailMessage();
// Set from address, attendees
msg.setFrom(new MailAddress(from));
msg.setTo(attendees);
// Create am instance of Appointment
Appointment app = new Appointment(appLocation, appStartDate, appEndDate, new MailAddress(from), attendees);
app.setSummary("Monthly Meeting");
app.setDescription("Please confirm your availability.");
msg.addAlternateView(app.requestApointment());
// Save the info to the database
if (saveIntoDB(msg, app) == true) {
// Save the message and Send the message with the meeting request
msg.save(msg.getMessageId() + ".eml", SaveOptions.getDefaultEml());
client.send(msg);
System.out.println("message sent");
}
} catch (Exception ex) {
System.err.println(ex);
}
}
private boolean saveIntoDB(MailMessage msg, Appointment app) {
// Save Message and Appointment information
Message messageRow = new Message();
messageRow.MessageId = msg.getMessageId();
messageRow.From = msg.getFrom().getAddress();
messageRow.Subject = msg.getSubject();
messageRow.Body = msg.getBody();
messageRow.AppLocation = app.getLocation();
messageRow.AppStartDate = app.getStartDate();
messageRow.AppEndDate = app.getEndDate();
messageRow.AppSummary = app.getSummary();
messageRow.AppDescription = app.getDescription();
addToDB(messageRow);
// Save attendee information
for (MailAddress address : app.getAttendees()) {
Attendees attendeesRow = new Attendees();
attendeesRow.MessageId = msg.getMessageId();
attendeesRow.EmailAddress = address.getAddress();
attendeesRow.DisplayName = address.getDisplayName();
addToDB(attendeesRow);
}
return true;
}
मीटिंग अनुरोध रद्द करना
मीटिंग अनुरोध रद्द करने के लिए, पहले ईमेल संदेश का Message ID प्राप्त करें। चूंकि हमने इस उदाहरण के लिए इस जानकारी को डेटाबेस में सहेजा है, हम इसे आसानी से फिर से प्राप्त कर सकते हैं।
- रद्दीकरण अनुरोध भेजने के लिए संदेश का चयन कर रहे हैं।
- Send Cancel Request पर क्लिक करके अनुरोध भेजें।
- डेटाबेस को क्वेरी करके उपस्थितियों, संदेश और कैलेंडर से संबंधित जानकारी प्राप्त करता है।
- डेटाबेस से प्राप्त जानकारी का उपयोग करके Calendar क्लास और MailMessage क्लास के इंस्टैंस बनाएं।
- रद्दीकरण अनुरोध भेजने के लिए Appointment.cancelAppointment() मेथड का उपयोग करें।
- SMTP का उपयोग करके मेल भेजें।
निम्न कोड स्निपेट दिखाता है कि मीटिंग अनुरोध को कैसे रद्द किया जाए।
public void cancel(String messageId) {
// Get the message and calendar information from the database get the attendee information
// Get the attendee information in reader
Attendees[] attendeesRows = getAttendeesFromDB(messageId);
// Create a MailAddressCollection from the attendees found in the database
MailAddressCollection attendees = new MailAddressCollection();
for (Attendees attendeesRow : attendeesRows) {
attendees.addItem(new MailAddress(attendeesRow.EmailAddress, attendeesRow.DisplayName));
}
// Get message and calendar information
Message messageRow = getMessageFromDB(messageId);
// Create the Calendar object from the database information
Appointment app = new Appointment(messageRow.AppLocation, messageRow.AppSummary, messageRow.AppDescription, messageRow.AppStartDate, messageRow.AppEndDate,
new MailAddress(messageRow.From), attendees);
// Create message and Set from and to addresses and Add the cancel meeting request
MailMessage msg = new MailMessage();
msg.setFrom(new MailAddress(messageRow.From));
msg.setTo(attendees);
msg.setSubject("Cencel meeting");
msg.addAlternateView(app.cancelAppointment());
SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587, "user@gmail.com", "password");
smtp.send(msg);
System.out.println("cancellation request successfull");
}