User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Promotion and Marketing Plans section within the Site Management category of DaniWeb, a massive community of 456,427 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,584 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Promotion and Marketing Plans advertiser: Affiliate Marketing
Views: 3410 | Replies: 7
Reply
Join Date: Sep 2006
Posts: 3
Reputation: Silver Snail is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
Silver Snail's Avatar
Silver Snail Silver Snail is offline Offline
Newbie Poster

Help Using "unsubscribe" in an email newsletter

  #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?
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Nov 2005
Posts: 140
Reputation: einfoway is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 1
einfoway's Avatar
einfoway einfoway is offline Offline
Junior Poster

Re: Using "unsubscribe" in an email newsletter

  #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  
Join Date: Dec 2005
Posts: 2
Reputation: Alanj is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
Alanj Alanj is offline Offline
Newbie Poster

Re: Using "unsubscribe" in an email newsletter

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

Re: Using "unsubscribe" in an email newsletter

  #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  
Join Date: Feb 2002
Location: Lawn Guylen, NY
Posts: 11,019
Reputation: cscgal is just really nice cscgal is just really nice cscgal is just really nice cscgal is just really nice cscgal is just really nice 
Rep Power: 33
Solved Threads: 116
Admin
Staff Writer
cscgal's Avatar
cscgal cscgal is online now Online
The Queen of DaniWeb

Re: Using "unsubscribe" in an email newsletter

  #5  
Jun 6th, 2007
I've heard good things about Lyris. Never used it myself.
Reply With Quote  
Join Date: Aug 2005
Posts: 76
Reputation: leelee is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 1
leelee leelee is offline Offline
Junior Poster in Training

Re: Using "unsubscribe" in an email newsletter

  #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  
Join Date: Jun 2007
Posts: 2
Reputation: Gizmoc is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
Gizmoc Gizmoc is offline Offline
Newbie Poster

Solution Re: Using "unsubscribe" in an email newsletter

  #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  
Join Date: Nov 2005
Posts: 140
Reputation: einfoway is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 1
einfoway's Avatar
einfoway einfoway is offline Offline
Junior Poster

Re: Using "unsubscribe" in an email newsletter

  #8  
Jun 23rd, 2007
How about PHPlist?
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb Promotion and Marketing Plans Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Similar Threads
Other Threads in the Promotion and Marketing Plans Forum

All times are GMT -4. The time now is 1:14 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC