Jump to content
xisto Community
Sign in to follow this  
khosro_php

Email Sending. email sending with php.

Recommended Posts

this script allow user to send an email for you.
i hope you enjoy :unsure:

[color="#0000ff"][indent]<?    $top='<html dir="rtl">    <head>  <meta http-equiv="Content-Language" content="fa">  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  </head>    <body>    <div align="center">	  <p style="margin-top: 0; margin-bottom: 0">	  <font face="Tahoma" size="1" color="#003366">in the name of god</font></p>	  <p style="margin-top: 0; margin-bottom: 0"><b>	  <font face="Tahoma" size="1" color="#003366">contents of recived form</font></b></p>	  <p style="margin-top: 0; margin-bottom: 0"><font face="Tahoma" size="1"> </font></p>	  <table border="0" cellpadding="0" style="border-collapse: collapse" width="500" height="20" bordercolor="#000000" id="table1">		  <tr>			  <td width="161" height="24" style="border-style: solid; border-width: 1px" bgcolor="#F4F4F4" bordercolor="#333333">			  <p align="center" style="margin: 2px 5px"><b>			  <font face="Tahoma" style="font-size: 9pt">name of choce</font></b></td>			  <td height="24" style="border-style: solid; border-width: 1px" bgcolor="#F4F4F4" bordercolor="#333333">			  <p align="center" style="margin: 2px 5px"><b>			  <font face="Tahoma" style="font-size: 9pt"> user data entered			  </font></b></td>		  </tr>';  ##############################  $body='		<tr>			  <td width="161" style="border-style: solid; border-width: 1px" height="24" bordercolor="#333333">			  <p align="center" style="margin: 2px 5px"><span lang="en-us">			  <font face="Tahoma" style="font-size: 9pt">%field</font></span></td>			  <td style="border-style: solid; border-width: 1px" height="24" bordercolor="#333333">			  <p align="justify" style="margin: 2px 10px; "><span lang="en-us">			  <font face="Tahoma" style="font-size: 9pt">%info</font></span></td>		  </tr>';  ##############################  $footer='	</table>	  <p style="margin-top: 0; margin-bottom: 0"> </p>	  <p style="margin-top: 0; margin-bottom: 0"><b><font face="Tahoma" size="1"> </font></b></div>    <div align="center">	  <table border="0" cellpadding="0" style="border-collapse: collapse" width="500" height="20" bordercolor="#000000" id="table2">		  <tr>			  <td height="25" style="border-style: solid; border-width: 1px" bgcolor="#F2CC84" colspan="2" bordercolor="#333333">	  <p style="margin-top: 0; margin-bottom: 0" align="center"><b>	  <font face="Tahoma" size="1" color="#800000">user information</font></b></p>			  </td>		  </tr>		  <tr>			  <td width="161" height="25" style="border-style: solid; border-width: 1px" bordercolor="#333333">			  <p align="center" style="margin: 2px 5px">			  <font face="Tahoma" style="font-size: 9pt">ip address</font></td>			  <td height="25" style="border-style: solid; border-width: 1px" bordercolor="#333333">			  <p align="center" style="margin: 2px 5px"><span lang="en-us">			  <font face="Tahoma" style="font-size: 9pt">%ip</font></span></td>		  </tr>		  <tr>			  <td width="161" style="border-style: solid; border-width: 1px" height="25" bordercolor="#333333">			  <p align="center" style="margin: 2px 5px">			  <font face="Tahoma" style="font-size: 9pt">your link</font></td>			  <td style="border-style: solid; border-width: 1px" height="25" bordercolor="#333333">			  <p align="center" style="margin: 2px 5px"><span lang="en-us">			  <font face="Tahoma" style="font-size: 9pt">%link</font></span></td>		  </tr>		  </table>	  <p align="center" style="margin: 2px 5px"> <p align="center" style="margin: 2px 5px"> </div>    <p align="center" dir="ltr" style="margin-top: 2px; margin-bottom: 2px">  <span lang="en-us"><font face="Verdana" size="1" color="#333333">if you can,t  Read this , change the encoding to UTF-8</font></span></p>  <p align="center" style="margin-top: 2px; margin-bottom: 2px">  <span lang="en-us"><font size="1" face="Verdana">  <a href="http://khosro.tk"><font color="#800000">Powered By: http://forums.xisto.com/no_longer_exists/;    <p align="center"> </p>    </body>    </html>';  ##############################  if (isset($_POST['email']))	  $email=$_POST['email'];  else	  $email=$from;  if (isset($_POST['subject']))	  $subject=$_POST['subject'];  ##############################  $header='From: "'.$email.'" <'.$email.">rn"  .'Reply-To: "'.$email.'" <'.$email.">rn"  .'To:<'.$to.">rn"  ."(anti-spam-(anti-spam-(anti-spam-(anti-spam-mime-version:)))) 1.0rn"  ."(anti-spam-(anti-spam-(anti-spam-(anti-spam-content-type:)))) text/html; charset=utf-8rn"  ."Content-Transfer-Encoding: 7bitrn";  ##############################  $main='';  foreach($_POST as $k => $v)	  {	  $lists=$body;	  $lists=ereg_replace('%field',$k,$body);	  $lists=ereg_replace('%info',$v,$lists);	  $main .=$lists;	  }  #############################  $ip= $_SERVER['REMOTE_ADDR'];  $link=$_SERVER['HTTP_REFERER'];  $footer=ereg_replace('%ip',$ip,$footer);  $footer=ereg_replace('%link',$link,$footer);  $body=$top.$main.$footer;  mail($to,$subject,$body, $header);  header("location: $redirect")  ?>[/indent][/color]
Notice from jlhaslip:
code tags added

Share this post


Link to post
Share on other sites

Well are you sure that this script works if you send mail on some other server because I found many problems with such things also. I would suggest that anyone who would like to use specialized class called php mailer. It solves all your problems and anyone who use is able to send also attachments by using it.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.