Using "unsubscribe" in an email newsletter

Please support our Promotion and Marketing Plans advertiser: Get a Free Web Marketing Analysis!
Reply

Join Date: Sep 2006
Posts: 6
Reputation: Silver Snail is an unknown quantity at this point 
Solved Threads: 0
Silver Snail's Avatar
Silver Snail Silver Snail is offline Offline
Newbie Poster

Using "unsubscribe" in an email newsletter

 
0
  #1
Jan 29th, 2007
My friend has asked me to help him with his proposed email newsletter that people will sign up for on his financially-themed website. He wants to give recipients the option to stop receiving the newsletter with an "unsubscribe" link in the newsletter email.

What is the cleanest, easiest arrangement to let my friend receive the email addresses to be removed from his database?
Reply With Quote Quick reply to this message  
Join Date: Nov 2005
Posts: 142
Reputation: einfoway is an unknown quantity at this point 
Solved Threads: 2
einfoway's Avatar
einfoway einfoway is offline Offline
Junior Poster

Re: Using "unsubscribe" in an email newsletter

 
0
  #2
Jan 29th, 2007
Originally Posted by Silver Snail View Post
My friend has asked me to help him with his proposed email newsletter that people will sign up for on his financially-themed website. He wants to give recipients the option to stop receiving the newsletter with an "unsubscribe" link in the newsletter email.

What is the cleanest, easiest arrangement to let my friend receive the email addresses to be removed from his database?



I take it if system is php or asp based. Your link will have his email id and user id . Just make a simple page where you can get this from url (userid and email address). And that code will update the status as not to send any more emails to this user or just deleet his record from your DB.
Reply With Quote Quick reply to this message  
Join Date: Dec 2005
Posts: 2
Reputation: Alanj is an unknown quantity at this point 
Solved Threads: 0
Alanj Alanj is offline Offline
Newbie Poster

Re: Using "unsubscribe" in an email newsletter

 
0
  #3
May 2nd, 2007
Please remove me from your E-mail list
Thank you
james@alancornelius.net
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 76
Reputation: leelee is an unknown quantity at this point 
Solved Threads: 1
leelee leelee is offline Offline
Junior Poster in Training

Re: Using "unsubscribe" in an email newsletter

 
0
  #4
Jun 5th, 2007
You can pay someone to do all this for you. There are plenty of companies out there that will manage your mailing list (including subscriptions and unsubscriptions). Might be easier than trying to do all that yourself, especially if you don't know what is required.
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,036
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 130
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is offline Offline
The Queen of DaniWeb

Re: Using "unsubscribe" in an email newsletter

 
0
  #5
Jun 6th, 2007
I've heard good things about Lyris. Never used it myself.
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/daniweb
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 76
Reputation: leelee is an unknown quantity at this point 
Solved Threads: 1
leelee leelee is offline Offline
Junior Poster in Training

Re: Using "unsubscribe" in an email newsletter

 
0
  #6
Jun 7th, 2007
Agreed.

Aweber also gets excellent reports, and although it's a little more expensive I understand it's well worth the premium.
Reply With Quote Quick reply to this message  
Join Date: Jun 2007
Posts: 2
Reputation: Gizmoc is an unknown quantity at this point 
Solved Threads: 0
Gizmoc Gizmoc is offline Offline
Newbie Poster

Re: Using "unsubscribe" in an email newsletter

 
0
  #7
Jun 22nd, 2007
Hi...

I had the same problem as you have (or had )...but now that I do this for a living, I think I can help explicitly

Like it or not, you need to have a database, just to make it easier.
Try looking for programs like DesktopEmailer or SendBlaster.

This is because they have a database integrated and you don't need to write a php newsletter system.

The magic is in the "tags". These are used for personalization. Like when you have 10,000 customers and you want each of them to receive his mail with "Dear Mr (his name) (his lastname)".
You will never manually send 10,000 such mails.

Having that explained, you have to know that these tags can contain any text.

So just create an unsub link like this :

<a href="mailto:#thisisthetag#?Subject=Unsubscribe&Body=I want to unsubscribe">Unsubscribe</a>

and #thisisthetag# = your friends email (retrieved by the program - no effort from your side)

If you know a little PHP, you could parse the argument at the end of the link like this :

LINK :

<a href="http://www.sitename.com/script.php?mail=#tag#>Unsubscribe</a>

#tag# - customer's email (again, retrieved by the program)

PHP :

<?php
$mail=$_GET['mail'];
$subject = "Unsubscribe";
$text = "The customer with the e-mail address".$mail." wants to UNSUBSCRIBE from the newsletter";
mail('user@server.com',$subject,$text,"From: $mail <$mail>");
header("location:thankyoupage.html");
?>

Just save what's above in a script.php file.

thankyoupage.html = a page kept in the same directory with the PHP script

Cheers man!

Any questions, i'm <email snipped>
Last edited by Ancient Dragon; Jun 22nd, 2007 at 8:05 pm. Reason: email snipped
Reply With Quote Quick reply to this message  
Join Date: Nov 2005
Posts: 142
Reputation: einfoway is an unknown quantity at this point 
Solved Threads: 2
einfoway's Avatar
einfoway einfoway is offline Offline
Junior Poster

Re: Using "unsubscribe" in an email newsletter

 
0
  #8
Jun 23rd, 2007
How about PHPlist?
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Promotion and Marketing Plans Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC