Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

wp_mail html content

$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 wordpress.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #html #content
ADD COMMENT
Topic
Name
1+8 =