. */ function send_mail(string $to, string $subject, string $content): bool { $from = 'noreply@gnufault.org'; $headers = "From: $from" . "\r\n" . "Reply-To: $from" . "\r\n" . "X-Mailer: PHP/" . phpversion(); return mail($to, $subject, $content, $headers); } ?>