send_email
Send email by passing an EmailJS template ID and optional parameters. Uses configured service ID and credentials to deliver messages.
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. |