-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.ts
46 lines (39 loc) · 1.46 KB
/
app.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import * as dotenv from 'dotenv'
import * as nodemailer from 'nodemailer'
dotenv.config()
// Description outlines the functionality for the LLM Function Calling feature
export const description = `Generate and send emails. Please provide the recipient's email address, and you should help generate appropriate subject and content. If no recipient address is provided, You should ask to add one. When you generate the subject and content, you should send it through the email sending function.`
// Define the parameter structure for the LLM Function Calling
interface Argument {
to: string
subject: string
body: string
}
const transporter = nodemailer.createTransport({
host: process.env.SMTP_HOST,
port: parseInt(process.env.SMTP_PORT || '1025'),
secure: false,
})
async function sendEmail(args: Argument): Promise<string> {
try {
await transporter.sendMail({
from: process.env.FROM_EMAIL,
to: args.to,
subject: args.subject,
text: args.body,
})
return `Email has been successfully sent to ${args.to}`
} catch (error) {
console.error('Failed to send email:', error)
return 'Failed to send email, please try again later'
}
}
/**
* Handler orchestrates the core processing logic of this function.
* @param args - LLM Function Calling Arguments.
* @returns The result of the email sending operation.
*/
export async function handler(args: Argument): Promise<string> {
const result = await sendEmail(args)
return result
}