|
|
|
10
Retrieve, delete, view count of pop3 email.
Please download the pop3 class file here first:
http://www.fileden.com/files/2006/10/24/314941/pop3.class.inc
Many uses!!!!
Please download the pop3 class file here first:
http://www.fileden.com/files/2006/10/24/314941/pop3.class.inc
Many uses!!!!
2
Have you ever wanted to create a task in your Outlook To-Do list based on an email you just got?? I have many times, so I wrote this script a while back - it will create an Outlook task (syncs with handheld and such) based on the contents of an email - incuding any attachements.
handy to get stuff out of your inbox and on your To-Do list!
handy to get stuff out of your inbox and on your To-Do list!
2
Cloudgen
The regular expression include the following:
Local part include (at least 2 characters):
1. Uppercase and lowercase English letters (a-z, A-Z)
2. Digits 0 through 9
3. Characters ! # $ % & ' * + - / = ? ^ _ ` { | } ~
4. Character . (dot) provided that it is not the first or last character, and provided also that it does not appear two or more times consecutively.
Top Level Domains include:
1. country-code top-level domains (ISO 3166)
2. generic top-level domains
3. sponsored top-level domains
4. infrastructure top-level domain
Detailed Discussion will be found: The regular expression for checking email
Local part include (at least 2 characters):
1. Uppercase and lowercase English letters (a-z, A-Z)
2. Digits 0 through 9
3. Characters ! # $ % & ' * + - / = ? ^ _ ` { | } ~
4. Character . (dot) provided that it is not the first or last character, and provided also that it does not appear two or more times consecutively.
Top Level Domains include:
1. country-code top-level domains (ISO 3166)
2. generic top-level domains
3. sponsored top-level domains
4. infrastructure top-level domain
Detailed Discussion will be found: The regular expression for checking email
-1
Just a simple check to make sure that a person's email address matches their domain.
For example .. in a form you have 2 textboxs .. 1 for their website url, the other for their email address. This checks to see if the domains for the email address and the website url match.
For example .. in a form you have 2 textboxs .. 1 for their website url, the other for their email address. This checks to see if the domains for the email address and the website url match.
5
Simple function to check for a valid email address. Makes sure the @ and a . are in the right place. There is most likely a perl package on CPAN that would be more extensive, but this happens to work for my uses.
5
Send a Mail using Lotus Notes
7
This is a simple function to check if an email is valid or not.
1
Simple code to get the html of a webpage and send is as a html email msg.
12
Another solution recommends using a text match pattern.
This works, but as long as you've got mail.jar in your classpath anyway, you might as well use this technique instead. (Plus, I think it works with older JDK 1.2+, whereas pattern.compile is 1.4+)
Note that it also accepts a comma-separated list of emails, just like a To: or CC: address line would.
This works, but as long as you've got mail.jar in your classpath anyway, you might as well use this technique instead. (Plus, I think it works with older JDK 1.2+, whereas pattern.compile is 1.4+)
Note that it also accepts a comma-separated list of emails, just like a To: or CC: address line would.
14
I needed to send an email through an authenticated SMTP server. I found the snippet on the PHP website to do the trick.







