html mailto
<a href="mailto:name@email.com">Link text</a>
html email links
<a href="mailto:raunak.00o201@gmail.com"> 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: <enquiry@example.com>' . "\r\n"; $headers .= 'Cc: myboss@example.com' . "\r\n"; mail($to,$subject,$message,$headers); ?>
html tag email
<a href="mailto:webmaster@example.com">Contattaci</a>
html open email program
<a href= "mailto:abc@example.com">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