cryptemail() function will print e-mail address such a way that only browser will understand it, and display the correct text corresponding to each character. This function is
very useful to stop SPAM. It will make it hard for normal Web Spider/Crawler or any custom made e-mail harvesting script which gets all e-mail addresses for a web-page,dump in
the database & do SPAM.
This simple email / feedback form can be used on any website with register_globals=of, so $_POST is used, also works on drupal.org installations and include files. Adds extra
info: ip, address, scriptlocation and timestamp.
isValidEmail is an express email address validation routine, which checks if the given email address is _looks_ like a valid one. Also it searches DNS for MX records
corresponding to the hostname extracted from the address (optional).
This class is designed to place a link on any page for a user to click on and recommend the site to a friend. The user can then fill in their name and email address as well as
their friend's name and email address, and any comments they would like to include with it. The example URL leads to our freeware archive where the class and all related files
can be downloaded in a zip archive.
The Subscription class provides functionality for managing subscrbers to Internet mailing lists. Zip archive containing all HTML files can be downloaded from
http://www.iconinteractive.com/freeware/
This utility function checks a string to verify that it is a valid e-mail address. Unlike the two other scripts here, this routine doesn't require a network lookup, and so
should be much faster.
mass_email_function is a working mass email solution for web application. It solves the problem of script execution timeout that can happen due to the long time the process of
sending e-mails require. Moreover, the proposed solution offers the feature of email delivery scheduling.
This class will enable you to decode mime email. It can for example decode the mime torture test made available by UW.
There is an example script available at http://www.phpguru.org to help you get started. This class is also available through PEAR
If you have the system resources, this's the only verification snippet you'll need. This performs an MX lookup on the domain of the email address to verify that it *can*
receive mail. (Note: This code did not work on the Windows ISAPI version of PHP, and may not work under Windows at all).
A replacement Form Mail for the ever popular (PERL) version from Matt's Script Archive. Includes a few extra features (more to come). Works on both *nix and Windows. (PHP3
& 4) For more info (READMES, etc) visit http://www.boaddrink.com/projects/phpformmail
This function (actually 2) connects to any SMTP server and sends a basic email. No fluff... no attachments... no mime-type... just the email. This eliminates that pesky
problem with the return-path being automatically set to the webserver user when sending through PHP's mail function.
This is my first php class and my first oop project. I hope I did good work. It's a simple class that includes all the classic methods for send mail. It support attachment,
html or texplain mailformat and other features. In this new version there're many new additions; check it out! Report bugs at: ras78@caltanet.it
A class to enable you to send email direct through an smtp server. Currently supports all basic commands; HELO, EHLO, MAIL, RCPT, RSET, DATA. Also supports the AUTH LOGIN
(basic authentication).
Send emails through an smtp server. Can send many emails through the same connection, to improve speed and efficiency. Much faster than the built in mail function when used
with sendmail.
The regular expression in this validation script check for a valid domain name. It does not allow email address to have .. in the hostname: test@test..net would be caught.