Hi guys,
I have a mail issued problem and i am honestly hopeless. I can send an e-mail with mail function and returns with result to specified address but i don't know how to read that data to put a flag into that mail address for mark it as not valid mail.
The code i am using is below so far it works fine but i can not read return mail.
Please help.
Regards
<?php
$returnMail = "jdavide22@hotmail.com";
$value = "jdavide2sdjhflkasjdf2@ezweb.ne.jp";
$_body = "Test Body";
$header = "From: info@example.com\n";
$header .= "Reply-To: info@example.com\n";
$header .= "Return-Path: jdavide22@hotmail.com\n";
$header .= "MIME-Version: 1.0\n";
$header .= "Content-Type: text/plain; charset=\"ISO-2022-JP\"\n";
$header .= "Content-Transfer-Encoding: 7bit\n";
$header .= "X-mailer: PHP/" . phpversion();
$_subject = "test_title";
$a = mail( $value, $_subject, $_body, $header, "-f " . $returnMail ."" );
?>