TD Subscribe Mail Script PHP / Emailing
Before I actually start mailing to anyone I need a script that I can link to inside every opt-in mail list email to allow subscribers to easily and automatically unsubscribe from the list. In some places, due to the rampant abuse of spammers, I believe there is legislation which requires such a link, so an ounce of prevention might be worth a pound of cure.
HTML E-mail PHP / Emailing
An HTML e-mail is a message that is presented in HTML instead of plain text. This allows control of colors and fonts, and it even allows the inclusion of images in a message. It's easy to send HTML e-mail from your client, but it's not as easy from a PHP script.
How to make a simple form mailer with PHP PHP / Emailing
As you may be well aware, displaying your e-mail address on your website can lead to e-mail harvesters picking up your address and adding it to hundreds or even thousands of lists used by spammers. If you want to allow your website visitors to contact you, but do not want to publicly display your e-mail address, then a form mailer may be exactly what you are looking for.
Sending Mail To The Mail List PHP / Emailing
Now that the login to the admin is successful and we have a secure environment, I need to make a form to be able to send mail to those on my list when indeed I do release new php scripts.
Sending MIME email in PHP PHP / Emailing
Tired of sending those drab textual notifications and newsletters to your friend and clients? Ever wanted to send attachments and/or HTML embedded email.The answer is MIME. The ensuing few pages explain the basics of MIME, creating MIME-compliant messages and then ends with a working class implementation of sending MIME complaint email in PHP. Note that references to calling script, caller etc. denote the script that uses the class we are about to develop and client/MUA etc. denote a mail reading client or mail user agent.
Creating a Mailing List Manager with PHP PHP / Emailing
This tutorial will guide you through building a complete mail list administration solution, capable of handling multiple lists. Suitable for small-medium sized lists (less than 500 names), flat files are used to store information for later retrieval. Many file access commands will be used and explained, and we'll cover how to send mail from a PHP script.
E-mail Validation with PHP PHP / Emailing
This tutorial will show you how to check to see if an E-mail address is valid. When you register on at a website, the site normally checks if the e-mail address that you enter is in a valid format. This is done by using what called a Regular Expression.
Registration script with activation PHP / Membership
In this tutorial you will learn how to create a fully featured registration script, users will be able to enter your site, visit the registration page, fill in the info, submit the form, receive an activation e-mail and be able to activate there accounts.
Simple Broadcast Emailer PHP / Emailing
This tutorial will walk you through making an email script that allows you to send the same message to more than one person. This is useful if you have a newsletter that gets sent regularly to multiple people.
Your First PHP Script PHP / Getting Started
In this tutorial learn how to do a PHP script. Writing a PHP script is very simple. No special software is needed, except a text editor like Notepad in which the script is written.