Mail_mimeЧасть::addsubpart()
Mail_mimeЧасть::addsubpart() – add sub part to a MIME part
Synopsis
require_once 'Mail/mimeЧасть.php';
resource &addSubЧасть (
string $body
, array $params
)
Описание
Adds a sub part to the current MIME part and returns a reference to it
Parameter
-
string
- the body of the sub part -
array
- the parameter for the sub part. See constructor for the possible values.
Return value
resource
-
a reference to the added part
Замечание
This function can not be called statically.
Пример
Add two attachments to a mail
<?php
include 'Mail/mimeЧасть.php';
...
$params['content_type'] = 'multipart/mixed';
$email = new Mail_mimeЧасть('', $params);
// Here we add a text part to the multipart we have
// already. Assume $body contains plain text.
$params['content_type'] = 'text/plain';
$params['encoding'] = '7bit';
$text = $email->addSubЧасть($body, $params);
// Now add an attachment. Assume $contents is
// the contents of the attachment
$params['content_type'] = 'application/zip';
$params['encoding'] = 'base64';
$params['disposition'] = 'attachment';
$params['dfilename'] = 'example.zip';
$attach =& $email->addSubЧасть($contents, $params);
// Now build the email. Note that the encode
// function returns an associative array containing two
// elements, body and headers. You will need to add extra
// headers, (eg. Mime-Version) before sending.
$email = $email->encode();
$email['headers']['Mime-Version'] = '1.0';
...
?>