以下のスクリプトを使用して、サイトを参照するために友人に電子メールを送信するために使用できる「友人を紹介する」として使用される私の Web ページから電子メールを送信しています。これはうまくいきます。しかし、1 つの問題として、電子メールを受信した友人は、受信した電子メールがサーバーのデフォルトの電子メール アドレスとネームサーバーを示していることに気付くでしょう。info@example.com で作成した新しいアカウントを受信メールに表示したい
(This is the php script)
$status = "OK";
$msg="";
if (isset($_POST['submit'])) {
$y_email=$_POST['y_email'];
$y_name=$_POST['y_name'];
$f_email=$_POST['f_email'];
$f_name=$_POST['f_name'];
$y_msg=$_POST['y_msg'];
if(substr_count($y_email,"@") > 1 or substr_count($f_email,"@") > 1){
$msg .="Use only one email address<br />";
$status= "NOTOK";
}
if (!stristr($y_email,"@") OR !stristr($y_email,".")) { // checking your email
$msg .="Your email address is not correct<br />";
$status= "NOTOK";}
if (strlen($y_name) <2 ) { // checking your name
$msg .="Please enter your name<br />";
$status= "NOTOK";}
if (!stristr($f_email,"@") OR !stristr($f_email,".")) { // checking friends email
$msg .="Your Friends address is not correct<br />";
$status= "NOTOK";}
if (strlen($f_name) <2 ) { // checking freinds name
$msg .="Please enter your friend's name<br />";
$status= "NOTOK";}
if($status=="OK"){ // all validation passed
/////////// Sending the message starts here //////////////
$ref=@$HTTP_REFERER;
/////Message at the top of the page showing the url////
$header_message = "";
/// Body message prepared with the message entered by the user ////
$body_message =$header_message." ".$y_msg." ";
$body_message .="Hi $f_name wants you to know about this great service!";
//// Mail posting part starts here /////////
$headers="";
//$headers = "Content-Type: text/html; charset=iso-8859-1n".$headers;
// Un comment the above line to send mail in html format
$headers4=$y_email; // Change this to change from address
$headers.="Reply-to: $headers4n";
$headers .= "From: $headers4n";
$headers .= "Errors-to: $headers4n";
$subject="Hello!";
mail($f_email,$subject,$body_message,$headers);
////// Mail posting ends here ///////////
}
}
(form)
<form action="" method="post" id="refer-friend">
<strong style="font-size:12px">Your Full Name</strong>
<br />
<input name="y_name" value="<?php if (isset($_POST['y_name'])) ?>" type="text" />
<br />
<strong style="font-size:12px">Your Email</strong>
<br />
<input name="y_email" value="<?php if (isset($_POST['y_email']))?>" type="text" />
<br />
<br />
<br />
<strong style="font-size:12px">Your Friends Name</strong>
<br />
<input name="f_name" value="<?php if (isset($_POST['f_name']))?>" type="text" />
<br />
<strong style="font-size:12px">your Friends Email</strong>
<br />
<input name="f_email" value="<?php if (isset($_POST['f_email']))?>" type="text" />
<br />
<br />
<p>
<button type="submit" name="submit" class="button orange">Send Request</button>
</p>
</form>