Lưu tin nhắn dưới dạng bản nháp trong Python
Contents
[
Hide
]
Aspose.Email - Lưu tin nhắn dưới dạng bản nháp
Để Lưu tin nhắn dưới dạng bản nháp bằng Aspose.Email Java cho Python, sử dụng đoạn mã sau.
Mã Python
\# Create a instance of MailMessage class
message = self.MailMessage()
\# Set subject of the message
message.setSubject("New message created by Aspose.Email for Java")
mail_address = self.MailAddress
\# Set Html body
message.setHtmlBody("<b>This line is in bold.</b> <br/> <br/>" +
"<font color=blue>This line is in blue color</font>")
\# Set sender information
message.setFrom(self.MailAddress("from@domain.com", "Sender Name", False))
\# Add TO recipients
message.getTo().addMailAddress(self.MailAddress("to1@domain.com", "Recipient 1", False))
message.getTo().addMailAddress(self.MailAddress("to2@domain.com", "Recipient 2", False))
\# Create an instance of MapiMessage and load the MailMessag instance into it
mapiMessage = self.MapiMessage
mapi_msg = mapiMessage.fromMailMessage(message)
\# Set the MapiMessageFlags as UNSENT and FROMME
mapi_message_flags = self.MapiMessageFlags
\# Save the MapiMessage to disk
mapi_msg.save(self.dataDir + "New-Draft.msg")
\# Display Status
print "Draft saved Successfully."
Tải mã đang chạy
Tải Lưu tin nhắn dưới dạng bản nháp (Aspose.Email) từ bất kỳ một trong các trang mã nguồn xã hội được đề cập dưới đây: