sparco Posted September 17, 2008 Posted September 17, 2008 Anyone can help me? I need a Php mailer for my website that sends to inbox. Sorry for this stupid request but i'm noob at php I just need it badly.
john18 Posted January 18, 2009 Posted January 18, 2009 (edited) Anyone can help me? I need a Php mailer for my website that sends to inbox. Sorry for this stupid request but i'm noob at php I just need it badly. free php mass mailer script you can find here you can find and inbox php mailer here Edited January 18, 2009 by john18
tain Posted January 18, 2009 Posted January 18, 2009 The PHP page has tons of examples. Here is one:<?php// The message$message = "Line 1\nLine 2\nLine 3";// In case any of our lines are larger than 70 characters, we should use wordwrap()$message = wordwrap($message, 70);// Sendmail('caffeinated@example.com', 'My Subject', $message);?>
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now