Cập nhật và lưu một email trong Python

Aspose.Email - Cập nhật và Lưu một Email

Để Cập nhật và Lưu một Email bằng Aspose.Email Java cho Python, sử dụng đoạn mã sau.

Mã Python




\# Initialize and Load an existing MSG file by specifying the MessageFormat

mailMessage = self.MailMessage

email = mailMessage.load(self.dataDir + "Message.msg")

\# Initialize a String variable to get the Email Subject

subject = email.getSubject()

\# Append some more information to Subject

subject = subject + " This text is added to the existing subject"

\# Set the Email Subject

email.setSubject('This text is added to the existing subject')

\# Initialize a String variable to get the Email's HTML Body

body = email.getHtmlBody()

\# Apppend some more information to the Body variable

body = body + "<br> This text is added to the existing body"

\# Set the Email Body

email.setHtmlBody(body)

\# Initialize MailAddressCollection object

contacts = self.MailAddressCollection()

\# Retrieve Email's TO list

contacts = email.getTo()

\# Add another email address to collection

contacts.add("to1@domain.com")

\# Set the collection as Email's TO list

email.setTo(contacts)

\# Initialize MailAddressCollection

contacts = self.MailAddressCollection()

\# Retrieve Email's CC list

contacts = email.getCC()

\# Add another email address to collection

contacts.add("cc2@domain.com")

\# Set the collection as Email's CC list

email.setCC(contacts)

\# Save the Email message to disk by specifying the MessageFormat

mailMessageSaveType = self.MailMessageSaveType

email.save(self.dataDir + "UpdateMessage.msg", mailMessageSaveType.getOutlookMessageFormat())

\# Display Status

print "Updated email message Successfully."

Tải mã đang chạy

Tải Cập nhật và Lưu một email (Aspose.Email) từ bất kỳ một trong các trang mã nguồn xã hội được đề cập dưới đây: