Welcome Guest, Not a member yet? Register   Sign In
HTML email - Do you see the problem?
#1

(This post was last modified: 09-29-2016, 11:22 AM by JanFromHamburg.)

Sorry, I do not see what I am doing wrong. Do you see it, could you give me a hint? I might just be too stressed...
I do get the email. But it is not in html.
Tryed to change "sendmail" to 'smtp' and vice versa. Also as different lines for mailtype.


PHP Code:
           $email                        $this->input->post('email');
 
           ...
 
           $config = Array(
 
                       'protocol'  => 'sendmail',
 
                       'smtp_host' => 'smtp.mydomain.com',
 
                       'smtp_port' => 465,
 
                       'smtp_user' => '[email protected]',
 
                       'smtp_pass' => 'password',
 
                       'mailtype'  => 'html'
 
                       'charset'   => 'iso-8859-1',
 
                   );
 
           $this->load->library('email',$config);
 
           $this->email->set_newline("/r/n");
 
           $this->email->from('[email protected]''Jan');
 
           $this->email->to($email);
 
           $this->email->subject('subject');
 
           $body     $this->load->view('report/email.php'$datatrue);
 
           $this->email->message($body);
 
           if($this->email->send()){ successmessage... } 
The View (report/email.php):
Code:
<!DOCTYPE html>
<html>
<head>
   <meta charset="utf-8" />
   <title>your report</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div>
   <div>
       </div>
   <p>
       Hello <?=$name?> <!-- this works ! -->
       </p>
   <p>
       Bla bla bla</p>
   <p>&nbsp;</p>
   <p>
       ......................................... <br />
       Signature</p>
   </div>
<div>
   <p><small>and some simple text more</small></p>
   </div>
</body>
</html>
Reply


Messages In This Thread
HTML email - Do you see the problem? - by JanFromHamburg - 09-29-2016, 10:46 AM



Theme © iAndrew 2016 - Forum software by © MyBB