77;20202;0ccatbody
†
<?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); ?> |