send email action
ActionsAn action sends a email.
- name: Send email
uses: AlexisMateo/sendmail-action@5
with:
smtp-server: ${{ secrets.SMTP_SERVER }}
smtp-server-port: ${{ secrets.SMTP_SERVER_PORT }}
auth-user: ${{ secrets.AUTH_USER }}
auth-password: ${{secrets.EMAIL_PASSWORD }}
subject: correciones a ${{github.repository}}
body: ${{github.context.payload}}
from: ${{ secrets.EMAIL_FROM }}
to: ${{ secrets.EMAIL_RECIVER }}
is-tls: false
commit-message: true
send email action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.