prevent signup email from getting flagged as spam

This commit is contained in:
Ben Harris 2019-01-24 17:23:28 -05:00
parent 6b46ae2c8b
commit d3554501de
Signed by untrusted user: ben
GPG Key ID: 4E0AF802FFF7960C
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ ssh key:
sudo ./makeuser {$_REQUEST["username"]} {$_REQUEST["email"]} \"{$_REQUEST["sshkey"]}\"
";
if (mail('sudoers', 'new tilde.team signup', $msgbody, "Reply-To: {$_REQUEST["email"]}")) {
if (mail('sudoers', 'new tilde.team signup', $msgbody)) {
echo '<div class="alert alert-success" role="alert">
email sent! i\'ll get back to you soon with login instructions! <a href="/">back to tilde.team home</a>
</div>';