Quantcast
Channel: Marius' Blog » email
Browsing latest articles
Browse All 3 View Live

Send an email with PHP (HTML content supported)

Here is a php function with which you can send an email with normal text or in html format. PHP code: $email_to = "Where the email will be sended to."; $email_from = "From where the email will be...

View Article


JavaScript Email Validation

Below JavaScript function returns true if the email address given as parameter is valid, false otherwise. JavaScript code: function validEmail(email){     var...

View Article


PHP Email Validation

Below PHP function returns true if the email address given as parameter is valid, false otherwise. PHP code: function validEmail($email){     if...

View Article
Browsing latest articles
Browse All 3 View Live