Отмена запросов на встречу с помощью Календаря
Вы можете отправить запрос на отмену встречи с помощью Aspose.Email, используя объект класса Appointment. Вам понадобится информация о первоначальном запросе на встречу, чтобы отменить его. В примерe этой статьи сначала отправляется запрос на встречу, информация сохраняется в базе данных, а затем запрос отменяется на основе идентификатора сообщения.
Отправка запросов на встречу
Перед тем как мы сможем отменить запросы на встречу, нам нужно отправить несколько из них:
- Сначала создайте экземпляр типа 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;
}
Отмена запроса на встречу
Чтобы отменить запрос на встречу, сначала получите идентификатор сообщения электронной почты. Поскольку мы сохранили эту информацию в базе данных для этого примера, мы можем легко получить ее снова.
- Выберите сообщение, для которого нужно отправить запрос на отмену.
- Нажмите Отправить запрос на отмену, чтобы отправить запрос.
- Запросите базу данных, чтобы получить информацию об участниках, сообщении и календаре.
- Создайте экземпляры классов 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");
}