在 PHP 中管理电子邮件附件

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)