GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   GMAIL - HTML Compatibility? (https://gfy.com/showthread.php?t=687571)

I LOVE Little Brown Asses 12-17-2006 04:04 AM

GMAIL - HTML Compatibility?
 
Supposedly there is a line of code one can throw into the html header of, say, an email newsletter, to make it display correcty in gmail.

:helpme Can anyone spill the secrets of making an HTML document appear properly in Gmail? :helpme

Nookster 12-17-2006 04:13 AM

Simple html works fine for me. Although you have to form the proper headers. I use php to make it. :2 cents:

Nookster 12-17-2006 04:20 AM

Quote:

Originally Posted by Nookster (Post 11541467)
Simple html works fine for me. Although you have to form the proper headers. I use php to make it. :2 cents:

Here...
Code:

$from = '[email protected]';
$message = '<html><head><title>Message Title</title></head>
              <body bgcolor=#ffffff text=#ff5500><div align=center>
              <font face=tahoma size=2 color=#ff5500><b>
              Hi, this is a message in html.<br /><br />';
              $message .= 'You are receiving this email message because you or someone else has submitted information to an adult related website using your email address and this message is it\'s reply.
              </font></div></body></html>';
              $headers  = 'MIME-Version: 1.0' . "\r\n";
              $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
              $headers .= 'From: Your Name <' . $from . '>' . "\r\n";
              $subject = 'Hi there!';
              $to = '[email protected]';
              mail($to, $subject, $message, $headers);


I LOVE Little Brown Asses 12-17-2006 05:07 AM

Quote:

Originally Posted by Nookster (Post 11541481)
Here...

thanks a million :thumbsup


All times are GMT -7. The time now is 09:48 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123