Placeholder canvas

Test mail

[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]