skip to Main Content

Sending Html Email

I wish to send a HTML email ideally with images I am sending via googles smtp servers, I generate some html with inline css it looks like this <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html charset=UTF-8" /> </head> <body>…

VIEW QUESTION

How to change php code to solve character coding issue?

I wrote this php email sender code: <?php if($_SERVER["REQUEST_METHOD"] === "POST") {} if (isset($_POST['submit'])) { $name = $_POST['name']; $subject = $_POST['subject']; $mailFrom = $_POST['mail']; $phone = $_POST['phone']; $company = $_POST['company']; $website = $_POST['website']; $message = $_POST['message']; $recaptcha_secret = "xy"; $response…

VIEW QUESTION
Back To Top
Search