[php]
<?php
$to = '[email protected]';
$subject = 'Test';
$body = 'The email body content';
$headers = array('Content-Type: text/html; charset=UTF-8');
wp_mail( $to, $subject, $body, $headers );
?>
[/php]
[php]
<?php
$to = '[email protected]';
$subject = 'Test';
$body = 'The email body content';
$headers = array('Content-Type: text/html; charset=UTF-8');
wp_mail( $to, $subject, $body, $headers );
?>
[/php]