test again
This commit is contained in:
parent
af2b0ae655
commit
dc250cadbb
1 changed files with 5 additions and 4 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue