html mailto
<a href="mailto:[email protected]">Link text</a>
html mailto
<a href="mailto:[email protected]">Link text</a>
html email links
<a href="mailto:[email protected]"> Email_id </a>
php mail
<?php
$to = $_POST['email'];
$subject = "Email Subject";
$message = 'Dear '.$_POST['name'].',<br>';
$message .= "We welcome you to be part of family<br><br>";
$message .= "Regards,<br>";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// More headers
$headers .= 'From: <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";
mail($to,$subject,$message,$headers);
?>
html mail
<a href="mailto:[email protected]">Mail me!</a>
html tag email
<a href="mailto:[email protected]">Contattaci</a>
html open email program
<a href= "mailto:[email protected]">Send Email</a>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us