Jump to content

MAiLING LIST HELL


Abalone

Recommended Posts

Im getting an error I dont understand

Parse error: parse error, unexpected T_NEW in /home/content/f/t/p/ftpcarrie/html/mail/class.SimpleMail.php on line 78

here is the code:

}

if (!mail ($this->to,$this->subject,$this->message,$this->headers)) {
throw new Exception('Sending mail failed');
return FALSE;
} else {
return TRUE;
}
Link to comment
Share on other sites

Before we go changing code, let get 100% sure on your PHP version.

Create a php script with the following code:

[code]
<?php

// Show information for your PHP installation
phpinfo();

?>
[/code]

...upload it to the root of your website as [b]info.php[/b] (or something similar), and then run it from your browser.

Let us know what PHP version it reports, and any settings that deal with error and exception handling.

Link to comment
Share on other sites

Ok i talked to the hosting guys again, and they say I have to add 5 at the end of my extentions.  So I did that and now im getting a completley new error

Warning: Cannot modify header information - headers already sent by (output started at /home/content/f/t/p/ftpcarrie/html/mail/class.SimpleMail.php5:66) in /home/content/f/t/p/ftpcarrie/html/mail/admin_transact.php5 on line 80

So i check around, I promise I try to figure this out before I ask hehe,  and It says that this error generally means whitespace at the end and beginning of the <?php etc.  I looked and there is no white space so...

I dunno
Thank you so much


here is the code:
Simple mail

<?php
class SimpleMail {
public $to = NULL;
public $cc = NULL;
public $bcc = NULL;
public $from = NULL;
public $subject = '';
public $body = '';
public $htmlbody = '';
public $send_text = TRUE;
public $send_html = FALSE;
private $message = '';
private $headers = '';

public function send($to = NULL,
$subject = NULL,
$message = NULL,
$headers = NULL) {
if (func_num_args() >= 3) {
$this->to = $to;
$this->subject = $subject;
$this->message = $message;
if ($headers) {
$this->headers = $headers;
}
  } else {
   
if ($this->from) {
$this->headers .= "From: " . $this->from . "\r\n";
}


if ($this->cc) {
$this->headers .= "Cc: " . $this->cc . "\r\n";
}

if ($this->bcc) {
$this->headers .= "Bcc: " . $this->bcc . "\r\n";
}

if ($this->send_text and !$this->send_html) {
$this->message = $this->body;

} elseif ($this->send_html and $this->send_text) {
$this->message = $this->htmlbody;
$this->headers = "MIME-Version: 1.0\r\n";
$this->headers = "Content-type: text/html; " .
"charset=iso-8859-1\r\n";

} else {

$_boundary = "==MP_Bound_xyccr948x==";

$this->headers = "MIME-Version 1.0\r\n";
$this->headers .= "Content-type: multipart/alternative; " .
"boundary=\"$_boundary\"\r\n";

$this->message = "This this a Multipart Message in " .
"MIME format\n";
$this->message .= "--$_boundary\n";
$this->message .= "Content-Type: text/plain; " .
  "charset=\"iso-8859-1\"\n";
$this->message .= "Content-Transfer-Encoding: 7bit\n\n";
$this->message .= $this->body . "\n";
$this->message .= "--$_boundary\n";
$this->message .= "Content-Type: text/html; " .
  "charset=\"iso-8859-1\"\n";
$this->message .= "Content-Transfer-Encoding: 7bit\n\n";
$this->message .= $this->htmlbody . "\n";
$this->message .= "--$_boundary--";
}
}
  if (!mail ($this->to,$this->subject,$this->message,$this->headers)) {
throw new Exception('Sending mail failed');
return FALSE;
} else {
return TRUE;
}
}
}
?>

And
Link to comment
Share on other sites

AND

admin_transact.php

<?php
require('config.php');
require('class.SimpleMail.php5');

$conn = mysql_connect(SQL_HOST, SQL_USER, SQL_PASS)
or die('Could not connect to Mysql Database. ' . mysql_error());

mysql_select_db(SQL_DB, $conn);

if (isset($_POST['action'])) {
switch ($_POST['action']) {
case 'Add New Mailing List':
$sql = "INSERT INTO ml_lists (listname) " .
  "VALUES ('" . $_POST['listname'] . "')";
mysql_query($sql)
or die('Could not add mailing list. ' . mysql_error());
$sql = "DELETE FROM ml_subscriptions " .
  "WHERE ml_id=" . $_POST["ml_id"];
    mysql_query($sql)
or die('Could not delete mailing list subscriptions. ' .
mysql_error());
break;

case 'Send Message':
if (isset($_POST['msg'], $_POST['ml_id']))  {
if (is_numeric($_POST['ml_id'])) {
$sql = "SELECT listname FROM ml_lists " .
  "WHERE ml_id='" . $_POST["ml_id"] . "'";
$result = mysql_query($sql, $conn)
or die (mysql_error());
$row = mysql_fetch_array($result);
$listname = $row['listname'];
}  else  {
    $listname = "Master";
}

$sql = "SELECT DISTINCT usr.email, usr.firstname, usr.user_id " .
  "FROM ml_users usr " .
  "INNER JOIN ml_subscriptions mls " .
  "ON usr.user_id = mls.user_id " .
  "WHERE mls.pending=0";
    if ($_POST['ml_id'] !='all') {
  $sql .= " AND mls.ml_id=" . $_POST['ml_id'];
}

$result = mysql_query($sql)
  or die('Could not get list of email addresses. ' . mysql_error());

$headers = "From: " . ADMIN_EMAIL . "\r\n";

while ($row = mysql_fetch_array($result)) {
if (is_numeric($_POST['ml_id'])) {
$ft = "You are recieving this message as a member of the ";
$ft .= $listname . "\n mailing list. If you have recieved ";
$ft .= "this email in error, or would like to\n remove your";
$ft .= "name from this mailing list, please visit the ";
$ft .= "following URL:\n";
$ft .= "http://" . $_SERVER['HTTP_HOST'] .
  dirname($_SERVER['HTTP_HOST']) . "/remove.php?u=" .
  $row['user_id'] . "&ml=" . $_POST['ml_id'];
} else {

$ft = "You are recieving this email because you subscribed ";
$ft = "to one or more\n mailing lists. Visit the following ";
$ft = "URL to change your subscriptions:\n";
$ft = "http://" . $_SERVER['HTTP_HOST'] .
  dirname($_SERVER['PHP_SELF']) . "/user.php?u=" .
  $row['user_id'];
}

$msg = stripslashes($_POST['msg']) . "\n\n";
$msg .= "_______________\n";
$msg .= $ft;

$email = new SimpleMail();

$email->send($row['email'],
stripslashes($_POST['subject']),
$msg,
$headers)
or die('Could not send email.');
}
}
break;
}


}

header('Location: admin.php');
?>
Link to comment
Share on other sites

Comment out this line in your [b]admin_transact.php[/b] file, and post back if you still get the header error:

[code=php:0]
header('Location: admin.php');
[/code]

[b]NOTE:[/b] You may be stuck at a blank page when you comment this out, but this will get us on the right track on what is causing your header error.

;)
Link to comment
Share on other sites

for one they are retarded, you never need anything other than .php, as for your problem, the blank page, based on your php.ini settings can be caused by your error handling setup, like he said get the info.php file up and running, and then send a link to the page, so we can look at your error handling information.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

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.