Files
simstudioai--sim/apps/sim/tools/smtp/send_mail.ts
T
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

178 lines
4.1 KiB
TypeScript

import type { SmtpSendMailParams, SmtpSendMailResult } from '@/tools/smtp/types'
import type { ToolConfig } from '@/tools/types'
export const smtpSendMailTool: ToolConfig<SmtpSendMailParams, SmtpSendMailResult> = {
id: 'smtp_send_mail',
name: 'SMTP Send Mail',
description: 'Send emails via SMTP server',
version: '1.0.0',
params: {
smtpHost: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'SMTP server hostname (e.g., smtp.gmail.com)',
},
smtpPort: {
type: 'number',
required: true,
visibility: 'user-only',
description: 'SMTP server port (587 for TLS, 465 for SSL)',
},
smtpUsername: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'SMTP authentication username',
},
smtpPassword: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'SMTP authentication password',
},
smtpSecure: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Security protocol (TLS, SSL, or None)',
},
from: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Sender email address',
},
to: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Recipient email address',
},
subject: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Email subject',
},
body: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Email body content',
},
contentType: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Content type (text or html)',
},
// Optional Fields
fromName: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Display name for sender',
},
cc: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'CC recipients (comma-separated)',
},
bcc: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'BCC recipients (comma-separated)',
},
replyTo: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Reply-to email address',
},
attachments: {
type: 'file[]',
required: false,
visibility: 'user-only',
description: 'Files to attach to the email',
},
},
request: {
url: '/api/tools/smtp/send',
method: 'POST',
headers: () => ({
'Content-Type': 'application/json',
}),
body: (params: SmtpSendMailParams) => ({
smtpHost: params.smtpHost,
smtpPort: params.smtpPort,
smtpUsername: params.smtpUsername,
smtpPassword: params.smtpPassword,
smtpSecure: params.smtpSecure,
from: params.from,
to: params.to,
subject: params.subject,
body: params.body,
contentType: params.contentType || 'text',
fromName: params.fromName,
cc: params.cc,
bcc: params.bcc,
replyTo: params.replyTo,
attachments: params.attachments,
}),
},
transformResponse: async (response) => {
const data = await response.json()
if (!response.ok) {
return {
success: false,
output: {
success: false,
},
error: data.error || 'Failed to send email via SMTP',
}
}
return {
success: true,
output: {
success: true,
messageId: data.messageId,
to: data.to,
subject: data.subject,
},
}
},
outputs: {
success: {
type: 'boolean',
description: 'Whether the email was sent successfully',
},
messageId: {
type: 'string',
description: 'Message ID from SMTP server',
},
to: {
type: 'string',
description: 'Recipient email address',
},
subject: {
type: 'string',
description: 'Email subject',
},
error: {
type: 'string',
description: 'Error message if sending failed',
},
},
}