Skip to content

Instantly share code, notes, and snippets.

@jahid32
Last active January 21, 2020 16:41
Show Gist options
  • Save jahid32/a9777876a491c06268bbc592c3c4bd26 to your computer and use it in GitHub Desktop.
Save jahid32/a9777876a491c06268bbc592c3c4bd26 to your computer and use it in GitHub Desktop.
Sent Mail Via WP Mail:
<?php
if(!empty($_POST)){
$form = $_POST['form'];
$to = $_POST['to'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
$headers .= 'From:' . $form . "\r\n";
wp_mail($to, $subject, $message, $headers);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment