diff options
author | Andrey Andreev <narf@devilix.net> | 2014-11-13 10:31:39 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-11-13 10:31:39 +0100 |
commit | 2ed757146d04901f39135c68fe090d6d7c4cacb0 (patch) | |
tree | f36e869d10e794b40f38d06cb49ec0d81d275fc5 | |
parent | 81c934729d9fcbb294a8914608c315eed30ff9c4 (diff) | |
parent | dfa1e4034ee944ee250aea46322565188dab2ab3 (diff) |
Merge pull request #3319 from dgmike/issue-3313
Verifying From header before send mail
-rw-r--r-- | system/language/english/email_lang.php | 1 | ||||
-rw-r--r-- | system/libraries/Email.php | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/system/language/english/email_lang.php b/system/language/english/email_lang.php index fdd823bc8..b6f03c71c 100644 --- a/system/language/english/email_lang.php +++ b/system/language/english/email_lang.php @@ -41,6 +41,7 @@ $lang['email_must_be_array'] = 'The email validation method must be passed an ar $lang['email_invalid_address'] = 'Invalid email address: %s'; $lang['email_attachment_missing'] = 'Unable to locate the following email attachment: %s'; $lang['email_attachment_unreadable'] = 'Unable to open this attachment: %s'; +$lang['email_no_from'] = 'Cannot send mail with no "From" header.'; $lang['email_no_recipients'] = 'You must include recipients: To, Cc, or Bcc'; $lang['email_send_failure_phpmail'] = 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.'; $lang['email_send_failure_sendmail'] = 'Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.'; diff --git a/system/libraries/Email.php b/system/libraries/Email.php index a55d2ffea..5cb16896f 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -1630,6 +1630,12 @@ class CI_Email { */ public function send($auto_clear = TRUE) { + if ( ! isset($this->_headers['From'])) + { + $this->_set_error_message('lang:email_no_from'); + return FALSE; + } + if ($this->_replyto_flag === FALSE) { $this->reply_to($this->_headers['From']); |