test again

This commit is contained in:
jaina heartles 2025-01-01 21:12:26 -05:00
parent af2b0ae655
commit dc250cadbb

View file

@ -29,7 +29,7 @@ let
to="admin@heartles.xyz" to="admin@heartles.xyz"
email="$(<<EOEMAIL email="$(cat <<EOEMAIL
To: $to To: $to
From: $from From: $from
Subject: $subject Subject: $subject
@ -39,9 +39,10 @@ let
EOEMAIL EOEMAIL
)" )"
sendmail -f "$from" "$to" <<EOEMAIL echo "Sending message:"
$email cat <<< "$email"
EOEMAIL
sendmail -f "$from" "$to" <<< "$email"
''; '';
}; };
in { in {