Skip to content

Commit

Permalink
meaningless changes to trigger workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AleixMT committed Apr 9, 2024
1 parent 33cd1f9 commit 7813935
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
12 changes: 3 additions & 9 deletions src/sendEmails.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,11 @@ for signature in $1; do
pointer="$(echo "${signature}" | tr '[:lower:]' '[:upper:]')_EMAIL"
echo pointer is $pointer
email_value="${!pointer}"
echo pointer is $email_value
echo curl --url 'smtps://smtp.gmail.com:465' \
--ssl-reqd \
--mail-from '${EMAIL_USERNAME}' \
--mail-rcpt "${email_value}" \
--user '${EMAIL_USERNAME}:${EMAIL_PASSWORD}' \
--upload-file "${PROJECT_FOLDER}/out/${signature}.html"
echo value is $email_value
curl --url 'smtps://smtp.gmail.com:465' \
--ssl-reqd \
--mail-from '${EMAIL_USERNAME}' \
--mail-from "${EMAIL_USERNAME}" \
--mail-rcpt "${email_value}" \
--user '${EMAIL_USERNAME}:${EMAIL_PASSWORD}' \
--user "${EMAIL_USERNAME}:${EMAIL_PASSWORD}" \
--upload-file "${PROJECT_FOLDER}/out/${signature}.html"
done
1 change: 0 additions & 1 deletion templates/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,3 @@
</div>
</body>
</html>

0 comments on commit 7813935

Please sign in to comment.