I am looking for a script that will forward the exact newsletter email to the specified email address. I have a link on the newsleter that says "click here to email this to a friend now" It will take them to a form that will say your name, friends email address and have a submit button. The friend should then receive the same newsletter [i know they could simply click forward via their email server but i want it done as explained above ^] thanks!
phplist is the best free solution http://www.phplist.com As far your custom part, you need to implement yourself or get it coded by some coder. regards
ok found one. it kinda works but the main part doesn't work!! The email doesn't actually get sent. I tested it. This is the code for the form: <form method=post action=tellck.php> <table border="0" cellpadding="0" cellspacing="0" align=center> <tr bgcolor='#f1f1f1'><td colspan=2 align=center><font face='Verdana' size='2' ><b>TELL A FRIEND</b></font></td></tr> <tr><td width=100><font face='Verdana' size='2' >Your Name</font></td><td width=200><input type=text name=y_name></td></tr> <tr bgcolor='#f1f1f1'><td><font face='Verdana' size='2' >Your Email</font></td><td><input type=text name=y_email></td></tr> <tr ><td><font face='Verdana' size='2' >Your Friend's Name</font></td><td><input type=text name=f_name></td></tr> <tr bgcolor='#f1f1f1'><td><font face='Verdana' size='2' >Friend's Email</font></td><td><input type=text name=f_email></td></tr> <tr ><td><font face='Verdana' size='2' >Your Message</font></td><td><textarea name=y_msg rows=5 cols=20></textarea></td></tr> <tr bgcolor='#f1f1f1'><td colspan=2 align=center><font face='Verdana' size='2' ><input type=submit value='Send'></font></td></tr> </table> </form> PHP: AND THIS IS THE CODE AFTER PRESSING THE SEND BUTTON: why won't it send? HELP!