Answers for "html mail"

19

html mailto

<a href="mailto:[email protected]">Link text</a>
Posted by: Guest on June-24-2020
5

html email links

<a href="mailto:[email protected]"> 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: <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";

mail($to,$subject,$message,$headers);
?>
Posted by: Guest on May-28-2020
2

html mail

<a href="mailto:[email protected]">Mail me!</a>
Posted by: Guest on June-19-2020
3

html tag email

<a href="mailto:[email protected]">Contattaci</a>
Posted by: Guest on August-05-2020
1

html open email program

<a href= "mailto:[email protected]">Send Email</a>
Posted by: Guest on August-15-2020

Browse Popular Code Answers by Language