Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

wp mail

$to = 'sendto@example.com';
$subject = 'The subject';
$body = 'The email body content';
$headers = array('Content-Type: text/html; charset=UTF-8');
 
wp_mail( $to, $subject, $body, $headers );
Source by developer.wordpress.org #
 
PREVIOUS NEXT
Tagged: #wp #mail
ADD COMMENT
Topic
Name
4+9 =