Jump to content

[SOLVED] Email issue


glenelkins

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.