Welcome Guest, Not a member yet? Register   Sign In
HTML Email not displaying as HTML but as text
#3

[eluser]ericbae[/eluser]
Here is my code...

Code:
$this->load->library('email');
$this->email->from('[email protected]', 'aaa');
$this->email->to($email);
$this->email->subject('test');
$message = "<html><body>" .
       "<p>test email</p>" .
       "&lt;/body&gt;&lt;/html&gt;";
                  
$this->email->message($message);
$this->email->send();

and the config file

&lt;?php if (!defined('BASEPATH')) exit('No direct script access allowed');

$config['useragent'] = 'CodeIgniter';
$config['protocol'] = 'mail';
$config['smtp_host'] = 'mail.aaa.com';
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = 'aaa';
$config['mailtype'] = 'html';

?&gt;


Messages In This Thread
HTML Email not displaying as HTML but as text - by El Forum - 06-23-2008, 07:55 AM
HTML Email not displaying as HTML but as text - by El Forum - 06-23-2008, 10:16 AM
HTML Email not displaying as HTML but as text - by El Forum - 06-23-2008, 05:51 PM
HTML Email not displaying as HTML but as text - by El Forum - 06-23-2008, 06:42 PM
HTML Email not displaying as HTML but as text - by El Forum - 06-25-2008, 02:37 PM
HTML Email not displaying as HTML but as text - by El Forum - 09-02-2008, 05:45 AM
HTML Email not displaying as HTML but as text - by El Forum - 09-02-2008, 08:11 AM
HTML Email not displaying as HTML but as text - by El Forum - 01-09-2009, 05:30 AM
HTML Email not displaying as HTML but as text - by El Forum - 05-14-2009, 12:13 PM
HTML Email not displaying as HTML but as text - by El Forum - 05-14-2009, 12:34 PM
HTML Email not displaying as HTML but as text - by El Forum - 05-14-2009, 01:04 PM
HTML Email not displaying as HTML but as text - by El Forum - 05-14-2009, 01:08 PM
HTML Email not displaying as HTML but as text - by El Forum - 05-14-2009, 01:19 PM



Theme © iAndrew 2016 - Forum software by © MyBB