No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
use mail($to, $subject, $message,string $additional_headers,string $additional_parameters); use $subejct and $message as database driven (which will change every month based on date) in additional parameter use "-f [email][email protected][/email]" so that is escapes all filters for guide on creating newsletter refer: [url]http://www.knowledge-transfers.com/it/how-to-write-a-html-newsletter[/url]
use the header as $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; this should do the trick. try it out and for more guide related to html newsletter [url]http://www.knowledge-transfers.com/it/how-to-write-a-html-newsletter[/url]
you can get the contents of the dynamically created pages using $message= file_get_contents('filepath'); and then put $message in the mail function. newsletter will be sent fine for rules to write a news letter [url]http://www.knowledge-transfers.com/it/how-to-write-a-html-newsletter[/url]
find the procedure here : 1. get the contents of the html file $StaticContent = file_get_contents('newsletter.html'); 2. set the header $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; 3.use the mail function mail($to, $subject, $StaticContent , $headers, $additional_parameter_if_required); For guide on how the html newsletter should be written refer …
The End.
Prithwirajsaha8