> For the complete documentation index, see [llms.txt](https://docs.startupstarterkits.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.startupstarterkits.com/ssk-pro-features/index-3/chapter-2.md).

# Sending Contact Requests

## Step 2 - Use Nodemailer to Send an Email

To send emails, the `sendEmail` function in **SSK-Pro** allows you to send emails through your configured SMTP server.

```typescript
await sendEmail({
  to: 'recipient@example.com',
  from: 'noreply@yourdomain.com',
  subject: 'Test Email',
  text: 'This is a test email.',
})
```

This function is pre-configured to use the email server defined in your environment variables. You can customize the email’s recipient, sender, subject, and body content.
