Welcome Guest, Not a member yet? Register   Sign In
send html format
#1

[eluser]tirso[/eluser]
hi to all

What's wrong with my code, This is my first time to use this class. I received it with my email but there is no any contents. I tried to remove ($this->email->mailtype = 'html'Wink and I received it with contents but html element was included.

Thanks in advance

Code:
function send(){
    $message = '<div style="width:400px; border:1px solid #666666">
          <div><p>'.$this->input->post('msg').'</p></div>
          <div><span>Name :</span>'.$this->input->post('name').'</div>
          <div><span>Address :</span>'.$this->input->post('address').'</div>  
          <div><span>Tel No :</span>'.$this->input->post('tel').'</div>    
          <div><span>Mobile No :</span>'.$this->input->post('mobile').'</div>  
          <div><span>Fax No :</span>'.$this->input->post('fax').'</div>    
          <div><span>Email Address :</span>'.$this->input->post('email').'</div>  
        </div>';

    $this->email->mailtype = 'html';        
    $this->email->from('Domesticity.com', $this->input->post('name'));
    $this->email->to('[email protected]');
    $this->email->cc('[email protected]');

    $this->email->subject('contact');
    $this->email->message($message);
    
    if ($this->email->send()){
        redirect('default_c');
    }
    else{
        print '[removed] alert ("Message not successfully sent") [removed]';
    }
}


Messages In This Thread
send html format - by El Forum - 07-21-2009, 09:13 PM
send html format - by El Forum - 07-21-2009, 11:38 PM
send html format - by El Forum - 07-22-2009, 09:35 AM
send html format - by El Forum - 07-22-2009, 09:57 AM
send html format - by El Forum - 07-22-2009, 08:02 PM
send html format - by El Forum - 07-22-2009, 08:37 PM
send html format - by El Forum - 07-22-2009, 09:01 PM
send html format - by El Forum - 07-22-2009, 09:35 PM
send html format - by El Forum - 07-22-2009, 09:37 PM
send html format - by El Forum - 07-22-2009, 09:53 PM
send html format - by El Forum - 10-02-2009, 07:53 AM



Theme © iAndrew 2016 - Forum software by © MyBB