php docker-utils/test_mail.php test@example.com $to = $argv[1]; $subject = 'An issue has been reported!'; $message = '
Check out this link to see your newly created card.
'; $headers = array( 'From' => 'no-reply@example.com', 'MIME-Version' => '1.0', 'Content-Type' => 'text/html' ); mail($to, $subject, $message, $headers);