Welcome Guest, Not a member yet? Register   Sign In
HTML e-mail with attachment problem
#1

[eluser]rweston[/eluser]
Hello,

when trying to send html e-mail, everything is 100% fine.

As soon as i add an attachment, the html portion of the e-mail does not display at all, but it is there ( when i use "Show Original" with gmail ).

I comment the attachment out, and it's fine. The attachment comes thru fine though when it is left in.

Anything i'm missing? I appreciate the help.

This is not being called in any sort of loop.

Code:
$this -> load -> library('email');
        $this -> load -> library('mailtemplate');

        $this->email->clear(true);

        $this -> email -> from('[email protected]','T');
        $this -> email -> to($To);
        $this -> email -> reply_to('[email protected]', 'T');

        $Subject = 'blah';
        $this -> email -> subject($Subject);

        $Body = 'My message body with not too much -stuff-';

        $Message = $this -> mailtemplate -> get_header().$Body.
                    $this -> mailtemplate -> get_footer(true);

        $this -> email -> message($Message);
        $this -> email -> attach($Attachment);

        $this -> email -> send();


Messages In This Thread
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 12:04 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 08:24 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 08:41 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 09:25 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 09:28 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 09:50 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 10:23 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 10:26 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 10:35 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 10:40 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 10:51 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 10:55 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 11:24 AM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 12:21 PM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 01:09 PM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 01:11 PM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 01:34 PM
HTML e-mail with attachment problem - by El Forum - 03-05-2008, 02:35 PM
HTML e-mail with attachment problem - by El Forum - 03-31-2009, 02:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB