glenelkins Posted January 7, 2009 Share Posted January 7, 2009 hi i must be missing something here, im tired an cannot focus lol. This code sends the email fine but it comes through showing the HTML code rather than interpreting the HTML ( Ie its showing the tags ): // Send email ini_set ( 'sendmail_from', $this->email_from ); $headers = "Content-type: text/html\n"; $headers .= "From:" . $this->email_from . "\n"; $att = "-f" . $this->email_from . "\n"; if ( !mail ( $this->email_to, $this->email_subject, $display, $headers, $att ) ) { die ( "EMAIL ERROR" ); } Link to comment https://forums.phpfreaks.com/topic/139829-solved-email-issue/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.