Page 1 of 1

php mailer?not working

Posted: Sat May 19, 2007 7:29 am
by ejiro2x
feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]


am really not into coding am just a copy and paste kind of guy please can you help me out with this php mailer its not working.....

FOOT:
</body>

</html>

HEAD:
[syntax="html"]<html>
<head>
<title>CHIMEXY</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#D8DEE0" text="#000000">
INDEX:[/syntax]

Code: Select all

<?
include "./head.php";

If ($action=="mysql"){
 #Grab email addresses from MySQL
 include "./mysql.info.php";
 if (!$sqlhost || !$sqllogin || !$sqlpass || 

!$sqldb || !$sqlquery){
 print "Please configure mysql.info.php with 

your MySQL information. All settings in 

this config file are required.";
 exit;
 }
 $db = mysql_connect($sqlhost, $sqllogin, 

$sqlpass) or die("Connection to MySQL 

Failed.");
 mysql_select_db($sqldb, $db) or 

die("Could not select database $sqldb");
 $result = mysql_query($sqlquery) or 

die("Query Failed: $sqlquery");
 $numrows = mysql_num_rows($result);

 for($x=0; $x<$numrows; $x++){
 $result_row = mysql_fetch_row($result);
 $oneemail = $result_row[0];
 $emaillist .= $oneemail."\n";
 }
 }

if ($action=="send"){
 $message = urlencode($message);
 $message = ereg_replace("%5C%22", 

"%22", $message);
 $message = urldecode($message);
 $message = stripslashes($message);
 $subject = stripslashes($subject);
}

?>
<form name="form1" method="post" 

action="" enctype="multipart/form-data">
  <br>
  <table width="100%" border="0">
    <tr> 
      <td width="10%"> 
        <div align="right"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif">Your 
          Email:</font></div>
      </td>
      <td width="18%"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif"> 
        <input type="text" name="from" 

value="<? print $from; ?>" size="30">
        </font></td>
      <td width="31%"> 
        <div align="right"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif">Your 
          Name:</font></div>
      </td>
      <td width="41%"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif"> 
        <input type="text" name="realname" 

value="<? print $realname; ?>" size="30">
        </font></td>
    </tr>
    <tr> 
      <td width="10%"> 
        <div align="right"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif">Reply-To:</font></div>
      </td>
      <td width="18%"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif"> 
        <input type="text" name="replyto" 

value="<? print $replyto; ?>" size="30">
        </font></td>
      <td width="31%"> 
        <div align="right"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif">Attach 
          File:</font></div>
      </td>
      <td width="41%"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif"> 
        <input type="file" name="file" 

size="30">
        </font></td>
    </tr>
    <tr> 
      <td width="10%"> 
        <div align="right"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif">Subject:</font></div>
      </td>
      <td colspan="3"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif"> 
        <input type="text" name="subject" 

value="<? print $subject; ?>" size="90">
        </font></td>
    </tr>
    <tr valign="top"> 
      <td colspan="3"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif"> 
        <textarea name="message" cols="60" 

rows="10"><? print $message; 

?></textarea>
        <br>
        <input type="radio" 

name="contenttype" value="plain" 

checked>
        Plain 
        <input type="radio" 

name="contenttype" value="html">
        HTML 
        <input type="hidden" name="action" 

value="send">
        <input type="submit" value="Send 

Message">
        </font></td>
      <td width="41%"><font size="-1" 

face="Verdana, Arial, Helvetica, 

sans-serif"> 
        <textarea name="emaillist" cols="30" 

rows="10"><? print $emaillist; 

?></textarea>
        <br>
        <a href="?action=mysql">Load 

Addresses from MySQL</a></font></td>
    </tr>
  </table>
</form>

<?
if ($action=="send"){

 if (!$from && !$subject && !$message && 

!$emaillist){
 print "Please complete all fields before 

sending your message.";
 exit;
 }

 $allemails = split("\n", $emaillist);
 $numemails = count($allemails);

 #Open the file attachment if any, and 

base64_encode it for email transport
 If ($file_name){
  @copy($file, "./$file_name") or die("The 

file you are trying to upload couldn't be 

copied to the server");
  $content = 

fread(fopen($file,"r"),filesize($file));
  $content = 

chunk_split(base64_encode($content));
  $uid = strtoupper(md5(uniqid(time())));
  $name = basename($file);
 }

 for($x=0; $x<$numemails; $x++){
  $to = $allemails[$x];
  if ($to){
  $to = ereg_replace(" ", "", $to);
  $message = ereg_replace("&email&", $to, 

$message);
  $subject = ereg_replace("&email&", $to, 

$subject);
  print "Sending mail to $to.......";
  flush();
  $header = "From: $realname 

<$from>\r\nReply-To: $replyto\r\n";
  $header .= "MIME-Version: 1.0\r\n";
  If ($file_name) $header .= 

"Content-Type: multipart/mixed; 

boundary=$uid\r\n";
  If ($file_name) $header .= "--$uid\r\n";
  $header .= "X-Mailer: PHPBulkEmailer 1.1 

http://www.nukedweb.com/\r\n";
  $header .= "Content-Type: 

text/$contenttype\r\n";
  $header .= "Content-Transfer-Encoding: 

8bit\r\n\r\n";
  $header .= "$message\r\n";
  If ($file_name) $header .= "--$uid\r\n";
  If ($file_name) $header .= 

"Content-Type: $file_type; 

name=\"$file_name\"\r\n";
  If ($file_name) $header .= 

"Content-Transfer-Encoding: base64\r\n";
  If ($file_name) $header .= 

"Content-Disposition: attachment; 

filename=\"$file_name\"\r\n\r\n";
  If ($file_name) $header .= 

"$content\r\n";
  If ($file_name) $header .= "--$uid--";
  mail($to, $subject, "", $header);
  print "<img 

src='images/success.gif'><br>";
  flush();
  }
  }

}
include "./foot.php";
?>
the messages are not going can you please help me out,thanks


feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]

Posted: Sat May 19, 2007 8:39 am
by thiscatis
have a look at http://swiftmailer.org/
it'll save your day.