This is a serverless function for sending emails using Resend.
YOMO_SFN_NAME=my_first_llm_function_tool
YOMO_SFN_ZIPPER=zipper.vivgrid.com:9000
YOMO_SFN_CREDENTIAL=<your-yomo-sfn-credential>
You can find other environment variables in the serverless page of vivgrid console.
- Sign up for a Resend account
- Get your API key
- Add the API key to your
.env
file:
[email protected]
RESEND_API_KEY=<your-resend-api-key>
curl -fsSL https://get.yomo.run | sh
For detailed CLI usage, check Doc: YoMo CLI.
You can test the email sending functionality with the following curl command:
curl --request POST \
--url https://api.vivgrid.com/v1/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'content-type: application/json' \
--data '{
"messages": [
{
"role": "assistant",
"content": "send an email to [email protected], tell him I will attend the meeting"
}
]
}'
yomo run app.ts -n my_first_llm_function_tool