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" ); } Quote Link to comment https://forums.phpfreaks.com/topic/139829-solved-email-issue/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.