Created
February 18, 2012 23:13
-
-
Save kevinsmith/1861286 to your computer and use it in GitHub Desktop.
Revisions
-
kevinsmith revised this gist
Feb 19, 2012 . 1 changed file with 0 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,11 +2,6 @@ class MY_Email extends CI_Email { /** * Set Vanity To address * -
kevinsmith created this gist
Feb 18, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,52 @@ <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class MY_Email extends CI_Email { public function __construct() { parent::__construct(); } /** * Set Vanity To address * * The Vanity To address is the address that is shown in the recipient's email * program, not the address to which the email is routed. * * @access public * @param string * @param string * @return void */ public function vanity_to($to, $name = '') { if (preg_match( '/\<(.*)\>/', $to, $match)) { $to = $match['1']; } if ($this->validate) { $this->validate_email($this->_str_to_array($to)); } if ($name == '') { $name = $to; } if (strncmp($name, '"', 1) != 0) { $name = '"'.$name.'"'; } $this->_set_header('To', $name.' <'.$to.'>'); return $this; } } // END MY_Email class /* End of file MY_Email.php */ /* Location: ./application/libraries/MY_Email.php */