send_email
Send emails using EmailJS templates by specifying a template ID and optional parameters. Credentials can be provided through environment variables or as arguments.
Instructions
Send an email using an EmailJS template. Credentials can be passed as parameters or read from EMAILJS_SERVICE_ID, EMAILJS_PUBLIC_KEY, and EMAILJS_PRIVATE_KEY environment variables.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| template_id | Yes | EmailJS template ID (e.g. 'template_abc123') | |
| template_params | No | Key-value pairs that map to variables in the EmailJS template | |
| service_id | No | EmailJS service ID. Overrides EMAILJS_SERVICE_ID env var. | |
| user_id | No | EmailJS public key. Overrides EMAILJS_PUBLIC_KEY env var. | |
| accessToken | No | EmailJS private key for extra security. Overrides EMAILJS_PRIVATE_KEY env var. |