GMAIL - HTML Compatibility?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • I LOVE Little Brown Asses
    Confirmed User
    • Jan 2006
    • 1047

    #1

    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.

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

    ladyboygold.com | joonmali.com | lilykoh.com | ashakumara.com | girlslovetoys.com
    POTD/MOTD/GOTD | Geo-IP Fansigns | Custom Gallery Builder | RSS Feeds
    60% Revshare | 10% Webmaster Referral | Console Free | 100% EXCLUSIVE | ICQ: 194519692
  • Nookster
    Confirmed IT Professional
    • Nov 2005
    • 3744

    #2
    Simple html works fine for me. Although you have to form the proper headers. I use php to make it.
    The Best Affiliate Software, Ever.

    Comment

    • Nookster
      Confirmed IT Professional
      • Nov 2005
      • 3744

      #3
      Originally posted by Nookster
      Simple html works fine for me. Although you have to form the proper headers. I use php to make it.
      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);
      The Best Affiliate Software, Ever.

      Comment

      • I LOVE Little Brown Asses
        Confirmed User
        • Jan 2006
        • 1047

        #4
        Originally posted by Nookster
        Here...
        thanks a million

        ladyboygold.com | joonmali.com | lilykoh.com | ashakumara.com | girlslovetoys.com
        POTD/MOTD/GOTD | Geo-IP Fansigns | Custom Gallery Builder | RSS Feeds
        60% Revshare | 10% Webmaster Referral | Console Free | 100% EXCLUSIVE | ICQ: 194519692

        Comment

        Working...