send_emails
Send wallet access instructions to employees via email. Designed for HR teams automating Solana token airdrops, ensuring role-based allocation and notifications.
Instructions
Send emails to employees with wallet access instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fromEmail | Yes | Sender email address (e.g., hr@company.com) | |
resendApiKey | No | Resend API key (optional, will use default if not provided) | |
subject | No | Email subject |
Input Schema (JSON Schema)
{
"properties": {
"fromEmail": {
"description": "Sender email address (e.g., hr@company.com)",
"type": "string"
},
"resendApiKey": {
"description": "Resend API key (optional, will use default if not provided)",
"type": "string"
},
"subject": {
"description": "Email subject",
"type": "string"
}
},
"required": [
"fromEmail"
],
"type": "object"
}