Skip to content Skip to sidebar Skip to footer

How Do I Send An Email Using Javascript?

How do I send email using JavaScript? I don't want to use mailto, because if I use mailto it will open an email client.

Solution 1:

Can't be done. Sending e-mail only works on the server side. If all you're doing is sending e-mail, a quick PHP script would likely do the trick.

Solution 2:

I agree with @Matchu. Sending email requires server side languages and Javascript is client side languages. In this case, the best way would be to use PHP. When you'll PHP you've lot's of the option to send an email how you like. Here's the relevant example which you can use to send an email by using the PHP default mail() function.

<?php$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);

Post a Comment for "How Do I Send An Email Using Javascript?"