ユーザーが数百通のメールを送信するメールシステム(PHPベース)で作業しています。それらのメールを追跡して、メールが開かれたかどうかを確認できますか?
誰でもこれを行う方法を教えてくれますか?
ありがとう
私が知っている唯一の方法-そしてそれはあまり信頼できません-のようなものが含まれているHTMLメールを送信することです:
PHPコード:
<img src='http://www.domain.com/mailcheck.php?user=123'>
画像ですが、処理中、GETユーザーを追跡できます。領収書を要求するようにメールヘッダーを変更する方法も見つけることができますが、その方法はわかりません。また、要求の自発的な性質のため、信頼性もありません。
単純に、PHPスクリプトを設定します。そのスクリプトでユーザーエージェントとIPをログに記録します(参照元をログに記録することもできます)。
それをメールに埋め込みます。
Gmailは常に画像の表示を開始しますが、独自のサーバーからホストするため、メールが開かれているかどうかはわかりますが、正しいIPを追跡できない可能性があります。ここでいくつかの参照を確認してください: Gmailキャッシュの効果とデフォルトでの画像の表示
Mailchimpがどのように実行するかを知ることができます: MailChimp Working
編集:コード参照:
<img src="http://www.example.com/checkopen.php?user_id=20" />
checkopen.php
スクリプト、user_id
フィールドは、このフィールドに対応し、このユーザーがメールを開いたことを格納します。
メールを送信するときは、user_id
フィールドは、メールを送信するたびに送信されます。
したがって、この画像がレンダリングされるときは常に、対応するURLが呼び出されるため、開いているメールのステータスについてシステムにログインできます。
単純なPHPファイルがインクルードイメージを生成しなかった理由は正確にはわかりませんでしたが、ここに、私自身のPHP 5.4で拒否されなかったイメージファイルを生成する別の非常に複雑な方法があります。 30 Webサーバー。
/ email_image /サブディレクトリ内のindex.phpファイルに配置したコードは次のとおりです。
<?php
$message_id = $_REQUEST['message_id'];
$graphic_http = 'http://mywebsite.com/email_image/message_open_tracking.gif';
$filesize = filesize( 'message_open_tracking.gif' );
header( 'Pragma: public' );
header( 'Expires: 0' );
header( 'Cache-Control: must-revalidate, post-check=0, pre-check=0' );
header( 'Cache-Control: private',false );
header( 'Content-Disposition: attachment; filename="a_unique_image_name_' . $message_id . '.gif"' );
header( 'Content-Transfer-Encoding: binary' );
header( 'Content-Length: '.$filesize );
readfile( $graphic_http );
exit;
?>
画像のファイル名には、次のものを使用しました。
http://mywebsite.com/email_image/?message_id=12345
Email_imageフォルダー内には、「message_open_tracking.gif」という名前の空白の1x1 gif画像もあります。
Index.phpファイルは、メッセージを既読としてマークするためにmessage_idを使用するように変更することもできます。受信者の電子メールアドレスなどの他の変数がクエリ文字列に含まれている場合、それらの値はそのindex.phpファイル内でも使用できます。
次の記事を作成してくれたBennett Stoneに感謝します。 http://www.phpdevtips.com/2013/06/email-open-tracking-with-php-and-mysql/
メールには disposition notification field があり、これを使用してこれを実現できます。もちろん、それはリモートエンドのMUAに依存します。彼らはMDNを無視してもかまいません(これは他の2つの回答が示唆する破壊的なものではなく、丁寧な要求です)。最終受信者のMUAは、メッセージが既読であることを示すメールを返信します。 SMTPサーバーはこれらをフィルタリングでき、送信された電子メールを応答にマップする何らかのプログラムを実行できます。
[[前提条件:]] 1. PHPMailerAutoload.phpをダウンロードする必要があります。 2. phpのバージョンを確認してください。 3.共有ホスティングでphpmailerが許可されていることを確認してください。
[[プライバシーポリシー]] 1.受信者のメールサービスプロバイダーは、受信者があなたのメールを開いたときにプライバシー警告をポップアップします。したがって、彼または彼女があなたのメールを拒否した場合、望ましい情報を得ることができませんでした。
ステップ1. PHP「index.php」という名前のWebページを作成します。これがフロントエンドとして機能します。ここからのみメールを送信して追跡します。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Email Open Tracking Using PHP</title>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/myjs.js" type="text/javascript"></script>
<link href="css/style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="main">
<h1>Email Open Tracking Using PHP</h1>
<div id="login">
<h2>Send Email</h2>
<hr/>
<form id="form1" method="post">
<div id="box">
<input type="email" placeholder="To : Email Id " name="mailto" required/>
<input type="text" placeholder="Subject : " name="subject" required/>
<textarea rows="2" cols="50" placeholder="Meassage : This is the fixed message of test email to get notify when it is read...." name="message" readonly ></textarea>
<input type="submit" value="Send" name="send" />
</div>
</form>
<div id="loading-image"><img src="http://www.arabianbusiness.com/skins/ab.main/gfx/loading_spinner.gif" alt="Sending....."/></div>
<form id="form2" method="post">
<div id="view"></div><br><br>
<div id="readstatus"></div>
<input type="submit" value="Track Status" id="track_mail" name="track"/>
</form>
</div>
</div>
</body>
</html>
ステップ2. PHP「tracker.php」という名前のファイルを作成します。2つの目的のためのPHPスクリプトがあります:
a。 PHPメーラーライブラリを使用してメールを送信します。
b。ログファイル(email.txt)を読んで、電子メールが開かれたかどうかを追跡します。
<?php
require ('phpmailer/PHPMailerAutoload.php');
$from = "[email protected]"; //sender's username
$pwd = "test@1234"; //sender's password
//-------------------------------------------------------SEND eMail----------------------------------------------------------------------
if (isset($_POST['mailto'])) {
try {
$mail = new PHPMailer(true); //New instance,exceptions enabled with true
$to = $_POST['mailto'];
$subject = $_POST['subject'];
$id = Rand(111, 999);
$id.=Rand(111, 999);
$body = "This is the fixed message of test email to get notify when it is read.....";
$body .= "<img border='0' src='https://yourwebsite.com/trackonline.php?email=$to&id=$id&subject=$subject' width='1' height='1' alt='image for email' >";
$mail->IsSMTP(); // tell the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Port = 25; // set the SMTP server port
$mail->Host = "smtp.gmail.com"; // SMTP server
$mail->Username = $from; // SMTP server username
$mail->Password = $pwd; // SMTP server password
$mail->From = $from;
$mail->FromName = "TESTUSER";
$mail->AddAddress($to);
$mail->Subject = $subject;
$mail->AltBody = "Please return read receipt to me."; // optional, comment out and test
$mail->WordWrap = 80; // set Word wrap
$mail->MsgHTML($body);
$mail->IsHTML(true); // send as HTML
$mail->Send();
//return foll
echo '<input id="id1" name="id" type="hidden" value="' . $id . '">'
. '<input id="email1" name="email" type="hidden" value="' . $to . '">'
. '<label id="label1">Mail sent to <b>' . $to . '<b></label>';
} catch (phpmailerException $e) {
echo $e->errorMessage();
}
}
////------------------------------------------READ email.txt-------------------------------------------------------
if (!empty($_POST['id'])) {
$id = $_POST['id'];
$to = $_POST['email'];
$checkid = "Id:" . $id;
$fh = fopen("https://yourwebsite.com/email.txt", "r");
$read = false; // init as false
while (($buffer = fgets($fh)) !== false) {
if (strpos($buffer, $checkid) !== false) {
$a = explode("%",$buffer);
$read = true;
break; // Once you find the string, you should break out the loop.
}
}
fclose($fh);
if ($read == true) {
//$string = $email . " seen the mail on subject: '" . $sub . "' from ip: " . $ipAddress . " on " . $date . " and Id:" . $id . "\n";
echo "<img id=\"closed-image\" src=\"img/envelope-open.png\" alt=\"email not opened\"/><br><p id=\"closed-para\">"
. "Mail sent from <b>" . $from . "</b><br> To <b>" . $to
. "</b><br>has been<div id=\"color-read\"> opened on <b>".$a[1]."</b></div></p>"
. "<input id=\"id1\" name=\"id\" type=\"hidden\" value=\"" . $id . "\">"; //appended hidden input to keep previous data on the page.
} else {
echo "<img id=\"closed-image\" src=\"img/envelope-closed.png\" alt=\"email not opened\"/><br><p id=\"closed-para\">"
. "Mail sent from <b>" . $from . "</b><br> To <b>" . $to
. "</b><br><div id=\"color-not-read\"> Not yet opened......</div></p>"
. "<input id=\"id1\" name=\"id\" type=\"hidden\" value=\"" . $id . "\">"; //appended hidden input to keep previous data on the page.
}
}
ステップ3. PHP「trackonline.php」という名前のファイルを作成します。これは、PHPスクリプトであり、テキストファイルにエントリを記録します。重複。
<?php
if (!empty($_GET['email'])) {
$id = $_GET['id'];
$checkid = "Id:" . $id;
$email = $_GET['email'];
$sub = $_GET['subject'];
date_default_timezone_set('Asia/Kolkata');
$date = date('d/m/Y h:i:s a');
$fh = fopen("email.txt", "a+"); //file handler
$a = fgets($fh);
$found = false; // init as false
while (($buffer = fgets($fh)) !== false) {
if (strpos($buffer, $checkid) !== false) {
$found = true;
break; // Once you find the string, you should break out the loop.
}
}
if ($found == false) {
$string = $email."opened the mail with subject:".$sub."on%".$date."% with mailId:".$id."\n";
fwrite($fh, $string);
}
fclose($fh);
//Get the http URI to the image
$graphic_http = 'https://yourwebsite.com/blank.gif';
//Get the filesize of the image for headers
$filesize = filesize('blank.gif');
//Now actually output the image requested, while disregarding if the database was affected
header('Pragma: public');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Cache-Control: private', false);
header('Content-Disposition: attachment; filename="blank.gif"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . $filesize);
readfile($graphic_http);
//All done, get out!
exit;
}