これは私のコードなので、mime.php
、mail.php
and Mail.php
などのすべてのファイルをプロジェクトのフォルダに入れても、まだ機能していないメールが機能しています。ubuntuオペレーティングシステムを使用してPHPでメールを送信するには?
<?php
require "Mail.php";
require_once 'Mail/mime.php';
require_once 'Mail/mail.php';
$to = "[email protected]";
$from = "[email protected]";
$subject = utf8_decode("mail");
$message = utf8_decode("hi");
$attachment_data = utf8_decode("testingmail1-filecontent");
$attachment_filename = utf8_decode("testingmail1.php");
send_mail_utf8_with_attachment($to, $from, $subject, $message ,$attachment_data, $attachment_filename);
function send_mail_utf8_with_attachment($to, $from, $subject, $message = "",$attachment_data="", $attachment_filename="")
{
$params = array();
$params['head_charset'] = 'utf-8';
$params['text_charset'] = 'utf-8';
$params['html_charset'] = 'utf-8';
$params['eol'] = "\n";
$hdrs = array('From' => $from ,'Subject' => $subject);
$mime = new Mail_mime($params);
$mime->setTXTBody($message);
if (strlen($attachment_data) && strlen($attachment_filename))
{
$mimeType = "application/octet-stream";
$mime->addAttachment($attachment_data, $mimeType, $attachment_filename, false);
}
$body = $mime->get();
$hdrs = $mime->headers($hdrs);
$mail =& Mail::factory('mail');
return $mail->send($to, $hdrs, $body);
}
?>
私はすべてのインスタレーション実装しました:
sudo apt-get install php-pear
sudo pear install mail
sudo pear install Net_SMTP
sudo pear install Auth_SASL
sudo pear install mail_mime
をしかし、まだそれが機能していません。
sendmail @ gmail @ gmail.comが間違っています。 –
どのようなエラーが表示されますか?あなたのphp.iniにあなたのメール送信サーバー/詳細をセットアップしましたか? – ManseUK
これはウィンドウではうまくいきますが、Ubuntuではそうしていません。私はすべての梨のパッケージをインストールしましたが、それでもまだ実りはありません – chandan