# action-send-email **Repository Path**: mirrors_hujiulong/action-send-email ## Basic Information - **Project Name**: action-send-email - **Description**: Github Action for sending email - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2025-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Github Action for Sending Email This is a action for sending email. ## Usage ```yaml name: 'Send Email' on: push: branches: - master jobs: deploy: runs-on: ubuntu-latest steps: - name: 'Send Email' uses: hujiulong/action-send-email@master with: # The hostname or IP address to, required host: 'smtp.server.com' # The port to connect to # Default: 587 if is secure is false or 465 if true port: 587 # If true the connection will use TLS when connecting to server secure: false # Username, required username: ${{ secrets.EMAIL_USERNAME }} # Password, required password: ${{ secrets.EMAIL_PASSWORD }} # The subject of the email, required subject: 'subject' # The plaintext version of the message text: 'text content' # The html version of the message html: '

html content

' # The email address of the sender # Default: username from: 'Sender ' # The email address of the receiver to: 'receiver@server.com' ``` ## License [MIT license](LICENSE).