May be you ever get advertise email. They send you a html email. The layout is very nice. There are many tables, coloring font, and soon. Yeah, they use html mail. They just set the body of the email to have HTML in it and add one additional header of Content-type: text/html and have it work. Ok, look the code:
03 | date_default_timezone_set( 'America/New_York' ); |
05 | $to = "you@ miscellaneous4all .com" . ", " ; |
06 | $to .= "we@ miscellaneous4all .com" ; |
09 | $subject = "Test for HTML Format" ; |
12 | $headers = "MIME-Version: 1.0\r\n" ; |
13 | $headers .= "Content-type: text/html; charset=iso-8859-1\r\n" ; |
17 | We miscellaneous4all .com>\r\n"; |
18 | $headers .= "From: Me miscellaneous4all .com>\r\n" ; |
19 | $headers .= "Cc: he@ miscellaneous4all .com\r\n" ; |
20 | $headers .= "Bcc: she@ miscellaneous4all .com\r\n" ; |
35 | mail( $to , $subject , $body , $headers ); |
0 comments:
Post a Comment