Let's begin by setting some limits. If you're like me, you like to keep it simple. All we're doing is collecting email addresses together for our mailing list, so biochemical engineering is out the window. If you're using Thunderbird (or that MS product), you can send nicely formatted newsletters out and retain all of the other awesome features of your email program so there's really no need for databases, logins, or pretty much anything else. We're going to stay far away from anything non-essential.
To keep it simple, I'll assume you have Dreamweaver or a comparable WYSIWYG composer; however, if you are editing source code you can click here to see an expanded version of this article with source code. Also, I've assumed that you have an extremely basic familiarity with PHP. If not, please begin by reading this PHP introduction (for absolute beginners).
There are only 3 steps we're going to need:
Marching on, we need to put some HTML on our page to let the visitor enter in their name and email address. To do this using Dreamweaver, you'll need to create a form with the POST method, a text input named visitor_name, a text input named visitor_email, and a submit button.
We now have our excellent mailing list form up and you should check to make sure that it ended up where you planned. At this point, you may need to make another slight change. If the file's extension is not php, php3, php4, or phtml you should change the file's extension to php. Now, you will need to be careful here as file extensions are extremely important, so you may lose functionality when you change the file's extension. If this is the case, look up the extension and find a tutorial for the language.
Take a breather and get ready for step 2. Since this is a PHP tutorial, we're going to take a closer look at the PHP code used to send us the email. Being a language, we'll need to learn enough of the PHP vernacular to 1) use the information the user submitted, 2) create the body of the email, and 3) send the email.
The form we created sends 2 pieces of information: visitor_name and visitor_email. When PHP receives them it realizes that someone POSTed some information and to make it easy for you to get ahold of it creates a couple of special "things" you can use to refer to what the user entered: $_POST['visitor_name'] and $_POST['visitor_email']. Why does it call them by funny names? Well the $_POST part assures you that it was information that was submitted by your visitor and not some other PHP somewhere on your page. The part in quotes allows you to pick which piece of information was submitted by your visitor (don't stress on the brackets - they just separate the two pieces of information).
Great! We now have our visitor's information, so let's send it to ourselves. Sending email in PHP almost seems too easy. We just need to modify this line mail(TO, SUBJECT, MESSAGE); by replacing each of the bold capitalized words and adding this inside of PHP tags to our page. Replace TO with your email address in quotes. Replace SUBJECT with the subject you want to appear on the email inside of quotes. In an effort to keep it simple, replace MESSAGE with "{$_POST['visitor_name']} at {$_POST['visitor_email']} would like to subscribe to your mailing list." By now, the MESSAGE replacement is probably self-explanatory except for the curly braces. The curly braces just reassure PHP that the information inside of them really does refer to something it should already know (in this case what our visitor submitted).
Now we just need to include our modified line in the HTML page. Here's the whole modified line (don't forget the PHP tags!):
mail("MY EMAIL ADDRESS","Newsletter Subscription","{$_POST['visitor_name']} at {$_POST['visitor_email']} would like to subscribe to your mailing list.");
If you're a really observant reader, you're already wondering how PHP knows to wait until someone's submitted a subscription request. Well, in the example above, it doesn't. It's also missing some kind of message to inform your subscriber that their request was successful. Since this is introductory material and already lengthy, I'll save that explanation for another article. Just follow everything you've learned above and use this line of code instead (I've bolded my special addition), substituting the success message for one of your own:
if (isset($_POST['visitor_email'])) { mail("MY EMAIL ADDRESS","Newsletter Subscription","{$_POST['visitor_name']} at {$_POST['visitor_email']} would like to subscribe to your mailing list."); echo "Subscription Complete. Thank you!"; }
Er, that's all folks! You'll start receiving emails which you can then add to a mail list in Thunderbird. To manage unsubscription requests, just have a little note at the end of your mailing list saying to reply to the email to be removed and then edit your mailing list.
Jeremy Miller - Webmaster of Script Reference - The *NEW* PHP Reference & Tutorial Site For Non-Programmers
![]() |
|
![]() |
|
![]() |
|
![]() |
1. Choose a big enough font size. A size 12... Read More
Designing an E-commerce Web site is not as simple as... Read More
If you are developing your website on a host that... Read More
In the time that I have been using the Internet,... Read More
People often come to me in a state of crisis... Read More
"I have a small business with just a couple of... Read More
I recently helped my mom to launch a website (www.mom2me.com)... Read More
Making money with your web site is the dream and... Read More
1. SiteSpinner V2 - On Sale www.deprice.com/sitespinner.htmSiteSpinner is a user-friendly... Read More
August 8 2005, Macromedia announced a release of Studio 8.... Read More
Build it and they will come is not always true;... Read More
What happened on your website yesterday? What about last week... Read More
The evolution of web development parallels the model of technology... Read More
Absolutely everything stems from the purpose of your website -... Read More
With the New Year upon us yet again, it's time... Read More
cPanel is a control panel for your website and allows... Read More
There are lots of HTML editors on the market, however,... Read More
There's been widespread speculation about the new legislation being introduced... Read More
"I don't sell anything online, I don't advertise online, in... Read More
Mini Websites are the most powerful and cost effective solution... Read More
We are clearly well past the innocent "golden age" of... Read More
Did you know that hosting companies overcrowd their servers despite... Read More
Wow, we`ve already taken a domain and chosen a web... Read More
To the starting internet entrepreneur, there is nothing more discouraging... Read More
Design and layout can make your communication come alive and... Read More
Have you ever wondered what challenges are faced by other... Read More
80% of your Web site is Maintenance!Once your Web site... Read More
Server Side Includes (SSI) with ASP People often... Read More
1. As the first step, "Hire a web designer."First create... Read More
Your business website is a critical aspect of being able... Read More
Running an effective website is a continuous process. I have... Read More
If you're looking for better web site ROI, chances are,... Read More
Many millions of dollars are being wasted on promoting and... Read More
This is a growing concern amongst many business owners. Does... Read More
RIVERSIDE, CA August 4, 2004 ?- "Historically, small business owners... Read More
The internet has taken over our lives with a vengeance,... Read More
Does your website have a links/resources page?Do you exchange reciprocal... Read More
If you've been developing websites on Mars for the past... Read More
In the late 1990's three San Francisco based web developers... Read More
Why do some sites succeed while the vast majority of... Read More
There are lots of HTML editors on the market, however,... Read More
The DDA (Disability Discrimination Act) states that service providers must... Read More
What is SQL? SQL stands for Structured Query Language and... Read More
Starting and maintaining a business is challenging enough without the... Read More
When you purchase a new item from a Yahoo! Store,... Read More
Conceptualize, Build and Publish a Web site - What's required... Read More
So you want to have a website. You have gone... Read More
A PHP Redirect automatically transfers a web user from one... Read More
How many Web Sites did you stumble over telling you... Read More
1. SiteSpinner V2 - On Sale www.deprice.com/sitespinner.htmSiteSpinner is a user-friendly... Read More
I've heard several prominent web marketers mention in their classes... Read More
I'm one of those people that always wanted a website,... Read More
How can we add Word Rich Content to our Websites... Read More
Never has competition been so difficult in the Internet world.... Read More
How do you decide on the content, products and or... Read More
Setting up a website is the very first step of... Read More
With all of the factors involved in designing and building... Read More
If you are developing your website on a host that... Read More
Have you ever wondered what challenges are faced by other... Read More
Q. Hey, Cathy: I'm just setting up a website. What... Read More
If you don't have a web site yet, are thinking... Read More
If you are living in a country that its native... Read More
What is the point of having a website, you may... Read More
Can you imagine the hypocrisy of spending thousands of dollars,... Read More
1. As the first step, "Hire a web designer."First create... Read More
We've all seen those messages on some websites warning not... Read More
Web Development |