<?php include 'Mail/mimePart.php'; ... $params['content_type'] = 'multipart/mixed'; $email = new Mail_mimePart('', $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->addSubPart($body, $params); // Now add an attachment. Assume $attach is // the contents of the attachment $params['content_type'] = 'application/zip'; $params['encoding'] = 'base64'; $params['disposition'] = 'attachment'; $params['dfilename'] = 'example.zip'; $attach =& $email->addSubPart($body, $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 = $message->encode(); $email['headers']['Mime-Version'] = '1.0'; ... ?>
Deliver First Class Web Sites: 101 Essential Checklists Want to learn how to make your web sites usable and accessible? Want to ensure that your sites meet current best practice, without spending hours trawling through incomprehensible specifications and recommendations from dozens of different books, research papers, and web sites? Want to make sure that the sites you build are "right the first time," requiring no costly redevelopments?