PHP में ईमेल संदेश में अटैचमेंट प्रबंधन
Contents
[
Hide
]
Aspose.Email - ईमेल संदेश में अटैचमेंट प्रबंधित करना
Aspose.Email Java for PHP का उपयोग करके एक नए ईमेल संदेश में अटैचमेंट जोड़ने के लिए, ManageAttachments मॉड्यूल की add_attachments मेथड को कॉल करें। यहाँ आप उदाहरण कोड देख सकते हैं।
PHP कोड
public static function add_attachments($dataDir=null){
\# Create a new instance of MailMessage class
$message =new MailMessage();
\# Set subject of the message
$message->setSubject("New message created by Aspose.Email for Java");
$mail_address = new 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(new MailAddress("from@domain.com", "Sender Name", false));
\# Add TO recipients
$message->getTo()->add(new MailAddress("to1@domain.com", "Recipient 1", false));
\# Adding attachment
\# Load an attachment
$attachment = new Attachment($dataDir . "1.txt");
\# Add attachment in instance of MailMessage class
$message->addAttachment($attachment);
\# Save message to disc
$messageFormat=new MessageFormat();
$message->save($dataDir . "Add-Attachment.msg", $messageFormat->getMsg());
\# Display Status
print "Added attachment successfully.".PHP_EOL;
}
चल रहा कोड डाउनलोड करें
नीचे उल्लेखित किसी भी सामाजिक कोडिंग साइट से ईमेल संदेश में अटैचमेंट प्रबंधित करना (Aspose.Email) डाउनलोड करें: