generated from actions/container-action
-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not really an issue but rather an ask... #189
Comments
Same question. |
I will gladly accept a PR adding those examples 🙂 |
I had the same problem. I ended up calling a custom Python script I wrote. steps:
- name: Send mail python
run: |
curl -s https://gist.githubusercontent.com/IgnacioHeredia/5f8fd2fc7d56763e4060c7b8fc8e0212/raw/3b5915cf3b8e0fd3c67b7ef7a019175116f0c367/send_email.py | \
python - \
--from_user ${{secrets.FROM_MAIL_USERNAME}} \
--from_pwd ${{secrets.FROM_MAIL_PASSWORD}} \
--to_user ${{secrets.TO_MAIL_USERNAME}} \
--subject "Failed Github workflow"
- name: Send mail action
uses: dawidd6/action-send-mail@v3
with:
server_address: smtp-mail.outlook.com
server_port: 587
secure: true
username: ${{secrets.FROM_MAIL_USERNAME}}
password: ${{secrets.FROM_MAIL_PASSWORD}}
subject: Failed Github workflow
to: ${{secrets.TO_MAIL_USERNAME}}
from: ${{secrets.FROM_MAIL_USERNAME}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you provide an example in the readme of using Hotmail.com, Live.com, outlook.com email addresses? I have tried all the various SMTP settings that I can find online and nothing works for these servers. It would be great to have options other than gmail.
The text was updated successfully, but these errors were encountered: