Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #31.8K
~2K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for jessa_lee

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]

Member Avatar for smartedesigners
0
1K
Member Avatar for javan96

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]

Member Avatar for Prithwirajsaha8
0
183
Member Avatar for pepon

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]

Member Avatar for Prithwirajsaha8
0
127
Member Avatar for aarya

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 …

Member Avatar for Prithwirajsaha8
0
193

The End.