That sounds incredibly easy compared to what I was expecting, though I really wanted some kind of out of the box solution.
Does anyone know of any scripts that do this at all?
Main Topics
Browse All TopicsHi There,
I would like to add a link on my newsletter that says "forward to friend"
The newsletter is an email, so really I just want the newsletter to be forwarded as it is.
Can someone point me in the right direction to do this please?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
This is a program that does it on their server.
http://www.cibd.com/DocsSe
Surely there is a way to do this?
in the email body try this, not sure if it work, but give a try :)
<form id="form1" name="form1" method="post" action="your_mailer_page in your site" target="_blank">
<label>
Email: </label>
<input type="text" name="email" id="email" size="70" />
</form>
<form id="form2" name="form2" method="post" action="">
<label>
<input type="submit" name="Send" id="Send" value="Send" />
</label>
</form>
Another good method.
You can give a link in your newsletter like
<a herf="landing_page.php" _target="_blank">Forward to friend</a>
and in the landing page you can give like this
<form id="form1" name="form1" method="post" action="emailer_page.php">
<label>
Email: </label>
<input type="text" name="email" id="email" size="70" />
</form>
<form id="form2" name="form2" method="post" action="">
<label>
<input type="submit" name="Send" id="Send" value="Send" />
</label>
</form>
in the emailer_page.php you can use your existing code which you are using to send newsletter email.
hope this helps,
kiranvj
I still have to somehow attach the newseltter also?
Have a look, I started another thread here:
http://www.experts-exchang
I am getting awfully confused and would dearly like a bit of help..?
check this on how to send the attachment(newsletter) with your mail
http://www.webcheatsheet.c
Ok, this is getting more detailed than I need.
I basically want this
http://www.alistapart.com/
in PHP
I think the only way I can get this to work is if i have a URL to send the friend to. There isn't one in my program I use to send the newsletter so I can't do it!
This was discovered in this discussion
http://www.experts-exchang
Business Accounts
Answer for Membership
by: kiranvjPosted on 2009-08-02 at 23:17:51ID: 25002185
You can give a link in your newsletter like
<a herf="landing page on your site" _target="_blank">Forward to friend</a>
in the landing page give a text box to enter the email address of the friend. Give a send button in this page. Clicking the send button will send the newsletter to the specified address.