summaryrefslogtreecommitdiffstats
path: root/system/libraries/Email.php
diff options
context:
space:
mode:
authorleandronf <leandronf@gmail.com>2012-03-22 12:07:31 +0100
committerleandronf <leandronf@gmail.com>2012-03-22 12:07:31 +0100
commit7686c1208cf1b0d9e1f4e522fff8a4b4646b7a2d (patch)
tree93ef9549c987c0bc0b1a0e4f4bea81381ae17de3 /system/libraries/Email.php
parentb455294bc404e41a65f8c9260837e76ee1cc9bda (diff)
Update system/libraries/Email.php
Diffstat (limited to 'system/libraries/Email.php')
-rw-r--r--system/libraries/Email.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php
index d870f9782..8f383c939 100644
--- a/system/libraries/Email.php
+++ b/system/libraries/Email.php
@@ -59,7 +59,7 @@ class CI_Email {
public $crlf = "\n"; // The RFC 2045 compliant CRLF for quoted-printable is "\r\n". Apparently some servers,
// even on the receiving end think they need to muck with CRLFs, so using "\n", while
// distasteful, is the only thing that seems to work for all environments.
- var $dsn = FALSE"; // Delivery Status Notification
+ public $dsn = FALSE; // Delivery Status Notification
public $send_multipart = TRUE; // TRUE/FALSE - Yahoo does not like multipart alternative, so this is an override. Set to FALSE for Yahoo.
public $bcc_batch_mode = FALSE; // TRUE/FALSE - Turns on/off Bcc batch feature
public $bcc_batch_size = 200; // If bcc_batch_mode = TRUE, sets max number of Bccs in each batch
@@ -1569,10 +1569,14 @@ class CI_Email {
break;
case 'to' :
- if($this->dsn)
+ if ($this->dsn)
+ {
$this->_send_data('RCPT TO:<'.$data.'> NOTIFY=SUCCESS,DELAY,FAILURE ORCPT=rfc822;'.$data);
+ }
else
+ {
$this->_send_data('RCPT TO:<'.$data.'>');
+ }
$resp = 250;
break;
case 'data' :