# EmailTemplateData

Contains the data of the email template, including the subject and body in HTML and plaintext variants

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**body** | [**EmailTemplateDataBody**](EmailTemplateDataBody.md) |  | [default to undefined]
**subject** | **string** |  | [default to undefined]

## Example

```typescript
import { EmailTemplateData } from '@ory/client';

const instance: EmailTemplateData = {
    body,
    subject,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
