mirror of
https://github.com/LukeHagar/Dokploy-ts-sdk.git
synced 2025-12-06 12:27:48 +00:00
29 lines
1.1 KiB
Markdown
29 lines
1.1 KiB
Markdown
# NotificationTestEmailConnectionRequest
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { NotificationTestEmailConnectionRequest } from "dokploy/models/operations";
|
|
|
|
let value: NotificationTestEmailConnectionRequest = {
|
|
smtpServer: "<value>",
|
|
smtpPort: 364.16,
|
|
username: "Nadia_Ankunding25",
|
|
password: "5PL6U1ez0w7XvQ1",
|
|
toAddresses: [
|
|
"<value 1>",
|
|
],
|
|
fromAddress: "<value>",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description |
|
|
| ------------------ | ------------------ | ------------------ | ------------------ |
|
|
| `smtpServer` | *string* | :heavy_check_mark: | N/A |
|
|
| `smtpPort` | *number* | :heavy_check_mark: | N/A |
|
|
| `username` | *string* | :heavy_check_mark: | N/A |
|
|
| `password` | *string* | :heavy_check_mark: | N/A |
|
|
| `toAddresses` | *string*[] | :heavy_check_mark: | N/A |
|
|
| `fromAddress` | *string* | :heavy_check_mark: | N/A | |