When you code php mail function you can't test it on your localhost you have to upload and test it on your hosting but now you can test php mail function on your localhost using Argosft mail server.
Create your Email Server PHP / Emailing
When you create an auto email sender program with mail() function. You can not to test it on your machine(localhost). You have to upload and test it on your web hosting, but now you can test php mail() function on your localhost using Argosft mail server.
Basic HTML newsletter in PHP/MYSQL PHP / Emailing
This tutorial will teach you how to make a simple newsletter in PHP/MYSQL with account activation. This will require PHP that is not running in SAFE_MODE or PHP that at least allows the sendmail function(duh, you can't send mail without this enabled).
Debugging PHP: Did You Remember to PHP / Debugging and Error Handling
So you've finally managed to install PHP. Anxious to use your new tool, you find the print function in the manual, write your own hello world, load the page and the dreaded "Parse error: parse error in /usr/local/apache/htdocs/test.php on line 2" error pops up in front of you. You know the scenario, read on to learn the fixes....
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.
Quickly Validate An Email Address PHP / Emailing
This little function will split an e-mail address passed to it at the @ sign, and make sure that there is a valid e-mail server at the other end =)
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.
PHP Function PHP / Functions
When you have a set of variables or want to make your code simpler, you will use a function. Creating a function is really easy.
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.