@redonvn/redai-template-email
v0.1.2
Published
OpenClaw plugin generated from template-email.json
Readme
@redonvn/redai-template-email
OpenClaw plugin generated from redai-sdk/packages/redai-template-email-openclaw-pluglin/template-email.json.
Generate
npm run generate --workspace @redonvn/redai-template-emailBuild
npm run build --workspace @redonvn/redai-template-emailInstall in OpenClaw
openclaw plugins install @redonvn/redai-template-emailRequired config
Add runtime config in ~/.openclaw/openclaw.json:
{
"plugins": {
"entries": {
"redai-template-email": {
"enabled": true,
"config": {
"baseUrl": "https://api.redai.vn/api/v1",
"bearerToken": "YOUR_JWT_TOKEN"
}
}
}
},
"agents": {
"list": [
{
"id": "main",
"tools": {
"allow": ["redai-template-email"]
}
}
]
}
}If you authenticate by API key, set:
{
"plugins": {
"entries": {
"redai-template-email": {
"config": {
"baseUrl": "https://api.redai.vn/api/v1",
"apiKey": "YOUR_API_KEY",
"apiKeyHeader": "X-API-Key"
}
}
}
}
}