Welcome Guest, Not a member yet? Register   Sign In
[CI 1.7 rev 1572+] Email Class - html email problems
#14

[eluser]yacman[/eluser]
With php5.3, it has a built in quoted_printable_encode and _decode method.

You can overload this easily
Code:
<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

/**
* CodeIgniter Email Class
*
* Permits email to be sent using Mail, Sendmail, or SMTP.
*
* @package  CodeIgniter
* @subpackage Libraries
* @category Libraries
* @author  ExpressionEngine Dev Team
* @link  http://ellislab.com/codeigniter/user-guide/libraries/email.html
*/
class MY_Email extends CI_Email {

/**
  * Prep Quoted Printable
  *
  * Prepares string for Quoted-Printable Content-Transfer-Encoding
  * Refer to RFC 2045 http://www.ietf.org/rfc/rfc2045.txt
  *
  * Checks if quoted_printable_encode is a function and will use the built
  * in method in php 5.3, otherwise uses the current CI_Email version.
  *
  * @access protected
  * @param string
  * @param integer
  * @return string
  */
protected function _prep_quoted_printable($str, $charlim = '')
{
  if (function_exists("quoted_printable_encode")) {
   return quoted_printable_encode($str);
  } else {  
   return parent::_prep_quoted_printable($str,$charlim);
  }
}
}


Messages In This Thread
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 11-19-2008, 11:11 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 11-19-2008, 11:11 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 11-19-2008, 11:20 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 11-19-2008, 11:31 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 12-15-2008, 11:31 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 12-15-2008, 11:55 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 12-16-2008, 05:26 PM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 06-20-2009, 02:38 PM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 07-26-2009, 04:32 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 09-04-2009, 12:10 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 06-22-2010, 04:58 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 09-29-2010, 08:24 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 09-29-2010, 08:36 AM
[CI 1.7 rev 1572+] Email Class - html email problems - by El Forum - 10-02-2012, 02:33 PM



Theme © iAndrew 2016 - Forum software by © MyBB