mixed send ( mixed $recipients , array $headers , string $body )
<?php
include('Mail.php');
$recipients = 'joe@example.com';
$headers['From'] = 'richard@example.com';
$headers['To'] = 'joe@example.com';
$headers['Subject'] = 'Test message';
$body = 'Test message';
$params['sendmail_path'] = '/usr/lib/sendmail';
// Create the mail object using the Mail::factory method
$mail_object =& Mail::factory('sendmail', $params);
$mail_object->send($recipients, $headers, $body);
?>
これは彼らが提供したコード サンプルであり、説明には十分です。$body をバルク html として設定するか、コンテンツとして送信するメッセージを設定できます。