Answers for "html mail"

19

html mailto

<a href="mailto:name@email.com">Link text</a>
Posted by: Guest on June-24-2020
5

html email links

<a href="mailto:raunak.00o201@gmail.com"> Email_id </a>
Posted by: Guest on April-30-2020
28

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);
?>
Posted by: Guest on May-28-2020
2

html mail

<a href="mailto:lorem@ipsum.com">Mail me!</a>
Posted by: Guest on June-19-2020
3

html tag email

<a href="mailto:webmaster@example.com">Contattaci</a>
Posted by: Guest on August-05-2020
1

html open email program

<a href= "mailto:abc@example.com">Send Email</a>
Posted by: Guest on August-15-2020

Browse Popular Code Answers by Language