Email - Send Message with File
Overviewβ
Send a message to anyone in the world using email, attaching one or more files.
To have Shipyard dynamically parse and output the contents of a file, you can include the filename in this format: {{text:file.txt}}
To upload multiple files, use Regex Match Type.
Due to email file size constraints, when the the total file size >10MB, Shipyard will automatically zip the files under the name "Archive.zip".
Note: This Vessel cannot be used to access a local file from your computer.
Recommended Setup:
- A Vessel built with this Blueprint should typically run after a Vessel that either downloads a file to Shipyard or generates a file with code.
Variablesβ
Name | Reference | Type | Required | Default | Options | Description |
---|---|---|---|---|---|---|
Send Method | EMAIL_SEND_METHOD | Select | β | tls | SSL: ssl TLS: tls | Determines how you want to send the email. We generally suggest using TLS when possible. |
SMTP Host | EMAIL_SMTP_HOST | Alphanumeric | β | - | - | The server where your email will be sent from. Usually formatted as smtp.domain.com |
SMTP Port | EMAIL_SMTP_PORT | Alphanumeric | β | - | - | The port from which your email will be sent. Commonly used ports are 25, 465, and 587. We generally suggest using 587 with TLS. |
Username | EMAIL_USERNAME | Alphanumeric | β | shipyardapptest@gmail.com | - | The username that your email provider uses to identify your access to send email. |
Password | EMAIL_PASSWORD | Password | β | hlgyecgskabctidf | - | The password associated with your username. |
Sender Address | EMAIL_SENDER_ADDRESS | Alphanumeric | β | - | - | The email address you want recipients to see when you send an email. We generally suggest keeping the sender address as your own email to ensure that you can appropriately receive replies. |
Sender Name | EMAIL_SENDER_NAME | Alphanumeric | β | - | - | The name you want users to see that the email is from. If left blank, the Sender Address will be used. |
To | EMAIL_TO | Alphanumeric | β | - | - | The email(s) that you want to send a message to. Can be comma-separated to include multiple email addresses. |
CC | EMAIL_CC | Alphanumeric | β | - | - | The email(s) that you want your message to be carbon copied (CCed) to. Can be comma-separated to include multiple email addresses. |
BCC | EMAIL_BCC | Alphanumeric | β | - | - | The email(s) that you want to be blind carbon copied (BCCed) to. Can be comma-separated to include multiple email addresses. Emails in this field will receive the email, but will not have their email exposed to all other recipients. |
Subject | EMAIL_SUBJECT | Alphanumeric | β | - | - | The subject of the email that you want to send. |
Message | EMAIL_MESSAGE | Alphanumeric | β | - | - | The body of the email, containing your main message. This field supports plain text as well as HTML. The body of the email, containing your main message. This field supports plain text as well as HTML. To have Shipyard dynamically parse and output the contents of a file, you can include the filename in this format: {{text:file.txt}} |
File Name Match Type | EMAIL_SOURCE_FILE_NAME_MATCH_TYPE | Select | β | exact_match | Regex: regex_match Exact: exact_match | Determines if the text in "File Name" will look for one file with exact match, or multiple files using regex. |
File Name | EMAIL_SOURCE_FILE_NAME | Alphanumeric | β | - | - | Name of the target file on Shipyard. Can be regex if "Match Type" is set accordingly |
Folder Name | EMAIL_SOURCE_FOLDER_NAME | Alphanumeric | β | - | - | Name of the local folder on Shipyard to upload the target file from. If left blank, will look in the home directory. |
Include Shipyard Footer? | EMAIL_INCLUDE_SHIPYARD_FOOTER | Boolean | β | True | - | Determines if a footer should be sent with the email that links back to the originating Vessel or Fleet. |
YAMLβ
Below is the YAML template for this Blueprint and can be used in the Fleet YAML Editor.
source:
blueprint: Email - Send Message with File
inputs:
EMAIL_SEND_METHOD: tls ## REQUIRED
EMAIL_SMTP_HOST: null ## REQUIRED
EMAIL_SMTP_PORT: null ## REQUIRED
EMAIL_USERNAME: shipyardapptest@gmail.com ## REQUIRED
EMAIL_PASSWORD: hlgyecgskabctidf ## REQUIRED
EMAIL_SENDER_ADDRESS: null
EMAIL_SENDER_NAME: null
EMAIL_TO: null
EMAIL_CC: null
EMAIL_BCC: null
EMAIL_SUBJECT: null
EMAIL_MESSAGE: null ## REQUIRED
EMAIL_SOURCE_FILE_NAME_MATCH_TYPE: exact_match ## REQUIRED
EMAIL_SOURCE_FILE_NAME: null ## REQUIRED
EMAIL_SOURCE_FOLDER_NAME: null
EMAIL_INCLUDE_SHIPYARD_FOOTER: true ## REQUIRED
type: BLUEPRINT
guardrails:
retry_count: 1
retry_wait: 0h0m0s
runtime_cutoff: 1h0m0s
exclude_exit_code_ranges:
- '102'
- '104'
- '200'
- '201'
- '203'