77;20202;0ccatbody - よくきたWiki

Loading ...


<?php


if ( php_sapi_name() != 'cli') {
    die( "This is run only cli.");
}


require_once "Mail.php";
require_once "Mail/mime.php";


$attach_file = dirname( __FILE__)."/attach.txt";
$from_address = "from@example.com";
$to_address = "to@example.com";
$subject = "Text attach";

$mailObj = new Mail_Mime( "\n");
$mailObj->addAttachment( $attach_file, "text/plain");
$mailObj->setTxtBody( "Test attach");

$headers = array(
 "From"=>$from_address,
 "Subject"=>$subject
);


$mailBody = $mailObj->get();

$mailHeader = $mailObj->headers( $headers);


var_dump( $mailHeader);
echo str_repeat( "=", 40)."\n";
var_dump( $mailBody);

$mail =& Mail::factory('mail');
$mail->send( $to_address, $mailHeader, $mailBody);

?>

リロード   新規 編集 凍結 差分 添付 複製 改名   トップ 一覧 検索 最終更新 バックアップ   ヘルプ   最終更新のRSS
最終修正日時: Tue, 25 May 2010 10:06:01 JST (4947d)
文字数(HTML): 867
文字数(Wiki): 952
人気ブログランキング - よくきた wiki