From 39dd307b60d07abfbd672a8d4b4990112b445bf8 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 26 Nov 2006 00:42:06 +0000 Subject: [PATCH] We should probably remove the line that stops mail from being sent --- mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail.php b/mail.php index 993abbc..0cc3453 100644 --- a/mail.php +++ b/mail.php @@ -277,7 +277,7 @@ class BSMail $headers .= "Content-Transfer-Encoding: 8bit" . $this->delim; $headers = trim($headers); - var_dump( "mail($tostring, {$this->subject}, $body, $headers, \"-f {$this->from}\")"); return; + // attempt to send the mail! if (mail($tostring, $this->subject, $body, $headers, "-f {$this->from}")) { -- 2.22.5