We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8950d7 commit 8b02257Copy full SHA for 8b02257
.github/workflows/monthly_album_digest.yaml
@@ -29,10 +29,11 @@ jobs:
29
- name: Send Email
30
id: send_email
31
run: |
32
+ TEXT="${{ steps.run.outputs.text }}"
33
curl -s --user 'api:${{ secrets.MAILGUN_API_KEY }}' \
34
https://api.mailgun.net/v3/${{ secrets.MAILGUN_SERVER }}/messages \
35
-F from='Mailgun Sandbox <postmaster@${{ secrets.MAILGUN_SERVER }}>' \
36
-F to='Tsung-Ju Lii <usefulalgorithm@gmail.com>' \
37
-F subject='Monthly Digest' \
- -F text='${{ steps.run.outputs.text }}'
38
+ --data-urlencode text="$TEXT"
39
0 commit comments