Top "Email" questions

Use this tag for questions involving code to send or receive email messages.

How to validate an email address in JavaScript

Is there a regular expression to validate an email address in JavaScript?

javascript regex validation email email-validation
How to validate an email address using a regular expression?

Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use …

regex validation email email-validation string-parsing
How to send an email using PHP?

I am using PHP on a website and I want to add emailing functionality. I have WAMPSERVER installed. How do …

php email wamp wampserver
What characters are allowed in an email address?

I'm not asking about full email validation. I just want to know what are allowed characters in user-name and server …

forms email email-validation email-address
Can I set subject/content of email using mailto:?

Is it possible to set the subject/content of email when I use mailto:?

html email mailto
Email validation using jQuery

I'm new to jQuery and was wondering how to use it to validate email addresses.

jquery validation email
Send email using the GMail SMTP server from a PHP page

I am trying to send an email via GMail's SMTP server from a PHP page, but I get this error: …

php email smtp gmail
How to send an email from JavaScript

I want my website to have the ability to send an email without refreshing the page. So I want to …

javascript email
Why do I get "'property cannot be assigned" when sending an SMTP email?

I can't understand why this code is not working. I get an error saying property can not be assigned MailMessage …

c# email smtpclient
Sending email with PHP from an SMTP server

$from = "[email protected]"; $headers = "From:" . $from; echo mail ("[email protected]" ,"testmailfunction" , "Oj",$headers); I have trouble sending email …

php email smtp