# 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.startupstarterkits.com/ssk-pro-features/index-3/chapter-2.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
