If you are looking to send email in wordpress with using wordpress inbuild functions. Please follow the below code for the same.
// Sender email address
$to = 'abc@xyx.com';
// Define subject of your mail
$subject = 'My subject......';
// Define your message body
$body = 'Put your email content here';
// You can define your header content as per your requirement
$header = array('Content-Type: text/html; charset=UTF-8');
wp_mail( $to, $subject, $body, $header);
0 Comment(s)