Quote:
Originally posted by JoshFink
Is there a way to put a plain text message at the top of the page in case they are in HTML and they can't read the message?
This is what I would like to put, but I don't know how to make it appear in text and not HTML format :
PHP Code:
--------------------------------------------------------------------------- The email you are receiving is in HTML format. If you are having trouble reading this, it is because your email program does not support HTML email.
Please follow the below link to change back to text email.
---------------------------------------------------------------------------
Thanks
Josh
|
The quickest way to do that Josh, would be to put <!-- just after the <html> paste in your text you want to appear and put --> after it, before the <head>
PHP Code:
<html>
<!--
The email you are receiving is in HTML format. If you are having
trouble reading this, it is because your email
program does not support HTML email.
Please follow the below link to change back to text email.
-->
<head>
Would be easy enough to edit commbull.php to make that permenant.
put it in the first $header =
PHP Code:
// set html header for mail
$header = "<html><head></head><body link=\"$cbgLink\" vlink=\"$cbgVLink\" alink=\"$cgbALink\">\n";
between the <html> and <head> and it should appear everytime you generate the community bulletin.