Email APIs
Overview
This page contains the APIs for managing Email Templates as well as emailing users using those templates. Here are the APIs:
Create an Email Template
This API is used to create an Email Template. Specifying an Id on the URI will instruct FusionAuth to use that Id when creating the Email Template. Otherwise, FusionAuth will generate an Id for the Email Template.
Request
Create an Email Template without providing an Id. An Id will be automatically generated.
POST /api/email/template
Create an Email Template with the provided Id
POST /api/email/template/{emailTemplateId}
Request Parameters
- emailTemplateId [UUID] Optional defaults to secure random UUID
-
The Id to use for the new Email Template. If not specified a secure random UUID will be generated.
Request Body
- emailTemplate.defaultFromName [String (FreeMarker Enabled)] Optional
-
The default From Name used when sending emails. If not provided, and a localized value cannot be determined, the default value for the tenant will be used. This is the display name part of the email address ( i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.defaultHtmlTemplate [String (FreeMarker Enabled)] Required
-
The default HTML Email Template.
- emailTemplate.defaultSubject [String (FreeMarker Enabled)] Required
-
The default Subject used when sending emails.
- emailTemplate.defaultTextTemplate [String (FreeMarker Enabled)] Required
-
The default Text Email Template.
- emailTemplate.fromEmail [String] Optional
-
The email address that this email will be sent from. If not provided, the default value for the tenant will be used. This is the address part email address (i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.localizedFromNames [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The From Name used when sending emails to users who speak other languages. This overrides the default From Name based on the user’s list of preferred languages.
- emailTemplate.localizedHtmlTemplates [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The HTML Email Template used when sending emails to users who speak other languages. This overrides the default HTML Email Template based on the user’s list of preferred languages.
- emailTemplate.localizedSubjects [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The Subject used when sending emails to users who speak other languages. This overrides the default Subject based on the user’s list of preferred languages.
- emailTemplate.localizedTextTemplates [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The Text Email Template used when sending emails to users who speak other languages. This overrides the default Text Email Template based on the user’s list of preferred languages.
- emailTemplate.name [String] Required
-
A descriptive name for the email template (i.e. "April 2016 Coupon Email")
{
"emailTemplate": {
"name": "Hello World",
"fromEmail": "email@example.com",
"defaultFromName": "Administrator",
"defaultSubject": "Hello World",
"defaultHtmlTemplate": "<p>Hello ${user.username}</p><p>Welcome To FusionAuth!</p>",
"defaultTextTemplate": "Hello ${user.username},\nWelcome To FusionAuth!",
"localizedFromNames": {
"de": "Verwalter",
"fr": "Administrateur"
},
"localizedHtmlTemplates": {
"de": "<p>Hallo ${user.username}</p><p>Willkommen auf der FusionAuth!<p>",
"fr": "<p>Bonjour ${user.username}</p><p>Bienvenue à FusionAuth!<p>"
},
"localizedTextTemplates": {
"de": "Hallo ${user.username},\nWillkommen auf der FusionAuth!",
"fr": "Bonjour ${user.username},\nBienvenue à FusionAuth!"
},
"localizedSubjects": {
"de": "Hallo Welt",
"fr": "Bonjour le monde"
}
}
}
Response
The response for this API contains the information for the Email Template that was created.
Code | Description |
---|---|
200 |
The request was successful. The response will contain a JSON body. |
400 |
The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. |
401 |
You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 |
The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
- emailTemplate.defaultFromName [String]
-
The default From Name used when sending emails. If not provided, and a localized value cannot be determined, the default value for the tenant will be used. This is the display name part of the email address ( i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.defaultHtmlTemplate [String]
-
The default HTML Email Template.
- emailTemplate.defaultSubject [String]
-
The default Subject used when sending emails.
- emailTemplate.defaultTextTemplate [String]
-
The default Text Email Template.
- emailTemplate.fromEmail [String]
-
The email address that this email will be sent from. If not provided, the default value for the tenant will be used. This is the address part email address (i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.id [UUID]
-
The Id of Email Template.
- emailTemplate.localizedFromNames [Map<Locale,String>]
-
The From Name used when sending emails to users who speak other languages. This overrides the default From Name based on the user’s list of preferred languages.
- emailTemplate.localizedHtmlTemplates [Map<Locale,String>]
-
The HTML Email Template used when sending emails to users who speak other languages. This overrides the default HTML Email Template based on the user’s list of preferred languages.
- emailTemplate.localizedSubjects [Map<Locale,String>]
-
The Subject used when sending emails to users who speak other languages. This overrides the default Subject based on the user’s list of preferred languages.
- emailTemplate.localizedTextTemplates [Map<Locale,String>]
-
The Text Email Template used when sending emails to users who speak other languages. This overrides the default Text Email Template based on the user’s list of preferred languages.
- emailTemplate.name [String]
-
A descriptive name for the email template (i.e. "April 2016 Coupon Email")
{
"emailTemplate": {
"id": "00000000-0000-0000-0000-0000000000ab",
"name": "Hello World",
"fromEmail": "email@example.com",
"defaultFromName": "Administrator",
"defaultSubject": "Hello World",
"defaultHtmlTemplate": "<p>Hello ${user.username}</p><p>Welcome To FusionAuth!</p>",
"defaultTextTemplate": "Hello ${user.username},\nWelcome To FusionAuth!",
"localizedFromNames": {
"de": "Verwalter",
"fr": "Administrateur"
},
"localizedHtmlTemplates": {
"de": "<p>Hallo ${user.username}</p><p>Willkommen auf der FusionAuth!<p>",
"fr": "<p>Bonjour ${user.username}</p><p>Bienvenue à FusionAuth!<p>"
},
"localizedTextTemplates": {
"de": "Hallo ${user.username},\nWillkommen auf der FusionAuth!",
"fr": "Bonjour ${user.username},\nBienvenue à FusionAuth!"
},
"localizedSubjects": {
"de": "Hallo Welt",
"fr": "Bonjour le monde"
}
}
}
Retrieve an Email Template
This API is used to retrieve one or all of the configured Email Templates. Specifying an Id on the URI will retrieve a single Email Template. Leaving off the Id will retrieve all of the Email Templates.
Request
Retrieve all of the Email Templates
GET /api/email/template
Retrieve a single Email Template by Id
GET /api/email/template/{emailTemplateId}
Request Parameters
- emailTemplateId [UUID] Optional
-
The Id of the Email Template to retrieve.
Response
The response for this API contains either a single Email Template or all of the Email Templates. When you call this API with an Id the response will contain just that Email Template. When you call this API without an Id the response will contain all of the Email Templates. Both response types are defined below along with an example JSON response.
Code | Description |
---|---|
200 |
The request was successful. The response will contain a JSON body. |
401 |
You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 |
The object you requested doesn’t exist. The response will be empty. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 |
The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
- emailTemplate.defaultFromName [String]
-
The default From Name used when sending emails. If not provided, and a localized value cannot be determined, the default value for the tenant will be used. This is the display name part of the email address ( i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.defaultHtmlTemplate [String]
-
The default HTML Email Template.
- emailTemplate.defaultSubject [String]
-
The default Subject used when sending emails.
- emailTemplate.defaultTextTemplate [String]
-
The default Text Email Template.
- emailTemplate.fromEmail [String]
-
The email address that this email will be sent from. If not provided, the default value for the tenant will be used. This is the address part email address (i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.id [UUID]
-
The Id of Email Template.
- emailTemplate.localizedFromNames [Map<Locale,String>]
-
The From Name used when sending emails to users who speak other languages. This overrides the default From Name based on the user’s list of preferred languages.
- emailTemplate.localizedHtmlTemplates [Map<Locale,String>]
-
The HTML Email Template used when sending emails to users who speak other languages. This overrides the default HTML Email Template based on the user’s list of preferred languages.
- emailTemplate.localizedSubjects [Map<Locale,String>]
-
The Subject used when sending emails to users who speak other languages. This overrides the default Subject based on the user’s list of preferred languages.
- emailTemplate.localizedTextTemplates [Map<Locale,String>]
-
The Text Email Template used when sending emails to users who speak other languages. This overrides the default Text Email Template based on the user’s list of preferred languages.
- emailTemplate.name [String]
-
A descriptive name for the email template (i.e. "April 2016 Coupon Email")
{
"emailTemplate": {
"id": "00000000-0000-0000-0000-0000000000ab",
"name": "Hello World",
"fromEmail": "email@example.com",
"defaultFromName": "Administrator",
"defaultSubject": "Hello World",
"defaultHtmlTemplate": "<p>Hello ${user.username}</p><p>Welcome To FusionAuth!</p>",
"defaultTextTemplate": "Hello ${user.username},\nWelcome To FusionAuth!",
"localizedFromNames": {
"de": "Verwalter",
"fr": "Administrateur"
},
"localizedHtmlTemplates": {
"de": "<p>Hallo ${user.username}</p><p>Willkommen auf der FusionAuth!<p>",
"fr": "<p>Bonjour ${user.username}</p><p>Bienvenue à FusionAuth!<p>"
},
"localizedTextTemplates": {
"de": "Hallo ${user.username},\nWillkommen auf der FusionAuth!",
"fr": "Bonjour ${user.username},\nBienvenue à FusionAuth!"
},
"localizedSubjects": {
"de": "Hallo Welt",
"fr": "Bonjour le monde"
}
}
}
Response Body
- emailTemplates [Array]
-
The list of all the Email Templates.
- emailTemplates
[x]
.defaultFromName [String] -
The default From Name used when sending emails. If not provided, and a localized value cannot be determined, the default value for the tenant will be used. This is the display name part of the email address ( i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplates
[x]
.defaultHtmlTemplate [String] -
The default HTML Email Template.
- emailTemplates
[x]
.defaultSubject [String] -
The default Subject used when sending emails.
- emailTemplates
[x]
.defaultTextTemplate [String] -
The default Text Email Template.
- emailTemplates
[x]
.fromEmail [String] -
The email address that this email will be sent from. If not provided, the default value for the tenant will be used. This is the address part email address (i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplates
[x]
.id [UUID] -
The Id of Email Template.
- emailTemplates
[x]
.localizedFromNames [Map<Locale,String>] -
The From Name used when sending emails to users who speak other languages. This overrides the default From Name based on the user’s list of preferred languages.
- emailTemplates
[x]
.localizedHtmlTemplates [Map<Locale,String>] -
The HTML Email Template used when sending emails to users who speak other languages. This overrides the default HTML Email Template based on the user’s list of preferred languages.
- emailTemplates
[x]
.localizedSubjects [Map<Locale,String>] -
The Subject used when sending emails to users who speak other languages. This overrides the default Subject based on the user’s list of preferred languages.
- emailTemplates
[x]
.localizedTextTemplates [Map<Locale,String>] -
The Text Email Template used when sending emails to users who speak other languages. This overrides the default Text Email Template based on the user’s list of preferred languages.
- emailTemplates
[x]
.name [String] -
A descriptive name for the email template (i.e. "April 2016 Coupon Email")
{
"emailTemplates": [
{
"id": "00000000-0000-0000-0000-0000000000ab",
"name": "Hello World",
"fromEmail": "email@example.com",
"defaultFromName": "Administrator",
"defaultSubject": "Hello World",
"defaultHtmlTemplate": "<p>Hello ${user.username}</p><p>Welcome To FusionAuth!</p>",
"defaultTextTemplate": "Hello ${user.username},\nWelcome To FusionAuth!",
"localizedFromNames": {
"de": "Verwalter",
"fr": "Administrateur"
},
"localizedHtmlTemplates": {
"de": "<p>Hallo ${user.username}</p><p>Willkommen auf der FusionAuth!<p>",
"fr": "<p>Bonjour ${user.username}</p><p>Bienvenue à FusionAuth!<p>"
},
"localizedTextTemplates": {
"de": "Hallo ${user.username},\nWillkommen auf der FusionAuth!",
"fr": "Bonjour ${user.username},\nBienvenue à FusionAuth!"
},
"localizedSubjects": {
"de": "Hallo Welt",
"fr": "Bonjour le monde"
}
}
]
}
Update an Email Template
This API is used to update an Email Template. You must specify the Id of the Email Template to update on the URI.
Request
Update an Email Template by Id
PUT /api/email/template/{emailTemplateId}
PATCH /api/email/template/{emailTemplateId}
Available since 1.12.0
When using the PATCH method, use the same request body documentation that is provided for the PUT request. The PATCH method will merge the provided request parameters into the existing object, this means all parameters are optional when using the PATCH method and you only provide the values you want changed. A
null
value can be used to remove a value. Patching anArray
will result in all values from the new list being appended to the existing list, this is a known limitation to the current implementation of PATCH.
Request Parameters
- emailTemplateId [UUID] Required
-
The Id of the Email Template to update.
Request Body
- emailTemplate.defaultFromName [String (FreeMarker Enabled)] Optional
-
The default From Name used when sending emails. If not provided, and a localized value cannot be determined, the default value for the tenant will be used. This is the display name part of the email address ( i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.defaultHtmlTemplate [String (FreeMarker Enabled)] Required
-
The default HTML Email Template.
- emailTemplate.defaultSubject [String (FreeMarker Enabled)] Required
-
The default Subject used when sending emails.
- emailTemplate.defaultTextTemplate [String (FreeMarker Enabled)] Required
-
The default Text Email Template.
- emailTemplate.fromEmail [String] Optional
-
The email address that this email will be sent from. If not provided, the default value for the tenant will be used. This is the address part email address (i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.localizedFromNames [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The From Name used when sending emails to users who speak other languages. This overrides the default From Name based on the user’s list of preferred languages.
- emailTemplate.localizedHtmlTemplates [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The HTML Email Template used when sending emails to users who speak other languages. This overrides the default HTML Email Template based on the user’s list of preferred languages.
- emailTemplate.localizedSubjects [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The Subject used when sending emails to users who speak other languages. This overrides the default Subject based on the user’s list of preferred languages.
- emailTemplate.localizedTextTemplates [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The Text Email Template used when sending emails to users who speak other languages. This overrides the default Text Email Template based on the user’s list of preferred languages.
- emailTemplate.name [String] Required
-
A descriptive name for the email template (i.e. "April 2016 Coupon Email")
{
"emailTemplate": {
"name": "Hello World",
"fromEmail": "email@example.com",
"defaultFromName": "Administrator",
"defaultSubject": "Hello World",
"defaultHtmlTemplate": "<p>Hello ${user.username}</p><p>Welcome To FusionAuth!</p>",
"defaultTextTemplate": "Hello ${user.username},\nWelcome To FusionAuth!",
"localizedFromNames": {
"de": "Verwalter",
"fr": "Administrateur"
},
"localizedHtmlTemplates": {
"de": "<p>Hallo ${user.username}</p><p>Willkommen auf der FusionAuth!<p>",
"fr": "<p>Bonjour ${user.username}</p><p>Bienvenue à FusionAuth!<p>"
},
"localizedTextTemplates": {
"de": "Hallo ${user.username},\nWillkommen auf der FusionAuth!",
"fr": "Bonjour ${user.username},\nBienvenue à FusionAuth!"
},
"localizedSubjects": {
"de": "Hallo Welt",
"fr": "Bonjour le monde"
}
}
}
Response
The response for this API contains the new information for the Email Template that was updated.
Code | Description |
---|---|
200 |
The request was successful. The response will contain a JSON body. |
400 |
The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. |
401 |
You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 |
The object you are trying to updated doesn’t exist. The response will be empty. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 |
The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
- emailTemplate.defaultFromName [String]
-
The default From Name used when sending emails. If not provided, and a localized value cannot be determined, the default value for the tenant will be used. This is the display name part of the email address ( i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.defaultHtmlTemplate [String]
-
The default HTML Email Template.
- emailTemplate.defaultSubject [String]
-
The default Subject used when sending emails.
- emailTemplate.defaultTextTemplate [String]
-
The default Text Email Template.
- emailTemplate.fromEmail [String]
-
The email address that this email will be sent from. If not provided, the default value for the tenant will be used. This is the address part email address (i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.id [UUID]
-
The Id of Email Template.
- emailTemplate.localizedFromNames [Map<Locale,String>]
-
The From Name used when sending emails to users who speak other languages. This overrides the default From Name based on the user’s list of preferred languages.
- emailTemplate.localizedHtmlTemplates [Map<Locale,String>]
-
The HTML Email Template used when sending emails to users who speak other languages. This overrides the default HTML Email Template based on the user’s list of preferred languages.
- emailTemplate.localizedSubjects [Map<Locale,String>]
-
The Subject used when sending emails to users who speak other languages. This overrides the default Subject based on the user’s list of preferred languages.
- emailTemplate.localizedTextTemplates [Map<Locale,String>]
-
The Text Email Template used when sending emails to users who speak other languages. This overrides the default Text Email Template based on the user’s list of preferred languages.
- emailTemplate.name [String]
-
A descriptive name for the email template (i.e. "April 2016 Coupon Email")
{
"emailTemplate": {
"id": "00000000-0000-0000-0000-0000000000ab",
"name": "Hello World",
"fromEmail": "email@example.com",
"defaultFromName": "Administrator",
"defaultSubject": "Hello World",
"defaultHtmlTemplate": "<p>Hello ${user.username}</p><p>Welcome To FusionAuth!</p>",
"defaultTextTemplate": "Hello ${user.username},\nWelcome To FusionAuth!",
"localizedFromNames": {
"de": "Verwalter",
"fr": "Administrateur"
},
"localizedHtmlTemplates": {
"de": "<p>Hallo ${user.username}</p><p>Willkommen auf der FusionAuth!<p>",
"fr": "<p>Bonjour ${user.username}</p><p>Bienvenue à FusionAuth!<p>"
},
"localizedTextTemplates": {
"de": "Hallo ${user.username},\nWillkommen auf der FusionAuth!",
"fr": "Bonjour ${user.username},\nBienvenue à FusionAuth!"
},
"localizedSubjects": {
"de": "Hallo Welt",
"fr": "Bonjour le monde"
}
}
}
Delete an Email Template
This API is used to delete an Email Template. You must specify the Id of the Email Template on the URI.
Request
Delete an Email Template By Id
DELETE /api/email/template/{emailTemplateId}
Request Parameters
- emailTemplateId [UUID] Required
-
The Id of the Email Template to delete.
Response
This API does not return a JSON response body.
Code | Description |
---|---|
200 |
The request was successful. The response will be empty. |
400 |
The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. |
401 |
You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 |
The object you are trying to delete doesn’t exist. The response will be empty. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 |
The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Preview an Email Template
This API is used to preview an Email Template. You simply pass all of the information for the Email Template in the request and rendered version of the Email is sent back to you in the response. The Email Template in the request does not need to be completely filled out either. You can send in a partial Email Template and the response will contain only what you provided.
Request
POST /api/email/template/preview
Request Body
- emailTemplate.defaultFromName [String (FreeMarker Enabled)] Required
-
The default From Name used when sending emails. This is the display name part of the email address ( i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.defaultHtmlTemplate [String (FreeMarker Enabled)] Required
-
The default HTML Email Template.
- emailTemplate.defaultSubject [String (FreeMarker Enabled)] Required
-
The default Subject used when sending emails.
- emailTemplate.defaultTextTemplate [String (FreeMarker Enabled)] Required
-
The default Text Email Template.
- emailTemplate.fromEmail [String] Required
-
The email address that this email will be sent from. This is the address part email address (i.e. Jared Dunn <jared@piedpiper.com>).
- emailTemplate.localizedFromNames [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The From Name used when sending emails to users who speak other languages. This overrides the default From Name based on the user’s list of preferred languages.
- emailTemplate.localizedHtmlTemplates [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The HTML Email Template used when sending emails to users who speak other languages. This overrides the default HTML Email Template based on the user’s list of preferred languages.
- emailTemplate.localizedSubjects [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The Subject used when sending emails to users who speak other languages. This overrides the default Subject based on the user’s list of preferred languages.
- emailTemplate.localizedTextTemplates [Map<Locale,String (FreeMarker Enabled)>] Optional
-
The Text Email Template used when sending emails to users who speak other languages. This overrides the default Text Email Template based on the user’s list of preferred languages.
- locale [Locale] Optional
-
The locale to use when rendering the Email Template. If this is null, the defaults will be used and the localized versions will be ignored.
{
"emailTemplate": {
"fromEmail": "email@example.com",
"defaultFromName": "Administrator",
"defaultSubject": "Hello World",
"defaultHtmlTemplate": "<p>Hello ${user.username}</p><p>Welcome To FusionAuth!</p>",
"defaultTextTemplate": "Hello ${user.username},\nWelcome To FusionAuth!",
"localizedFromNames": {
"de": "Verwalter",
"fr": "Administrateur"
},
"localizedHtmlTemplates": {
"de": "<p>Hallo ${user.username}</p><p>Willkommen auf der FusionAuth!<p>",
"fr": "<p>Bonjour ${user.username}</p><p>Bienvenue à FusionAuth!<p>"
},
"localizedTextTemplates": {
"de": "Hallo ${user.username},\nWillkommen auf der FusionAuth!",
"fr": "Bonjour ${user.username},\nBienvenue à FusionAuth!"
},
"localizedSubjects": {
"de": "Hallo Welt",
"fr": "Bonjour le monde"
}
},
"locale": "de"
}
Response
The response for this API contains the rendered Email and also an Errors that contains any rendering issues FusionAuth found. The template might have syntax or logic errors and FusionAuth will put these errors into the response.
Code | Description |
---|---|
200 |
The request was successful. The response will contain a JSON body. |
400 |
The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. |
401 |
You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 |
The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
- email.from.address [String]
-
The email address that this email will be sent from. This is the address part email address (i.e. Jared Dunn <jared@piedpiper.com>).
- email.from.display [String]
-
The From display name this email will be sent from. This is the name part email address ( i.e. Jared Dunn <jared@piedpiper.com>).
- email.html [String]
-
The HTML Email.
- email.subject [String]
-
The Subject used when sending the email.
- email.text [String]
-
The Text Email.
- email.errors [Errors]
-
An Errors object that contains any errors in the Email Template.
{
"email": {
"from": {
"address": "email@example.com",
"display": "Verwalter"
},
"html": "<p>Hallo {{user.username}}</p><p>Willkommen auf der FusionAuth!<p>",
"subject": "Hallo Welt",
"text": "Hallo {{user.username}},\nWillkommen auf der FusionAuth!"
},
"errors": {
}
}
Send an Email
This API is used to send an Email to one or more users using an Email Template.
Request
Send an email using a template by Id
POST /api/email/send/{emailTemplateId}
Request Parameters
- emailTemplateId [UUID] Required
-
The Id of the Email Template to use to generate the Email from.
Request Headers
- X-FusionAuth-TenantId [String] Optional
-
The unique Id of the tenant used to scope this API request.
The tenant Id is not required on this request even when more than one tenant has been configured because the tenant can be identified based upon the request parameters or it is otherwise not required.
Specify a tenant Id on this request when you want to ensure the request is scoped to a specific tenant. The tenant Id may be provided through this header or by using a tenant locked API key to achieve the same result.
See Making an API request using a Tenant Id for additional information.
Request Body
- bccAddresses [Array<String>] Optional
-
A list of email addresses to BCC when sending the Email.
- ccAddresses [Array<String>] Optional
-
A list of email addresses to CC when sending the Email.
- requestData [Object] Optional
-
An optional JSON object that is passed to the Email Template during rendering. The variables in the JSON object will be accessible to the FreeMarker templates of the Email Template.
- userIds [Array<UUID>] Required
-
The list of User Ids to send the Email to. You must specify at least one Id.
{
"bccAddresses": [
"jared@piedpiper.com"
],
"ccAddresses": [
"james@bond.com"
],
"requestData": {
"paymentAmount": 42,
"message": "Thank you for purchasing the answer to the universe. We appreciate your business"
},
"userIds": [
"ce485a91-906f-4615-af75-81d37dc71e90"
]
}
Response
Code | Description |
---|---|
202 |
The request was successful. The response will contain a JSON body. If the JSON body is empty the template was rendered correctly and queued to be sent for all user Ids provided. If one or more failed the response will contain errors in the response format documented below. |
400 |
The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. |
401 |
You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
500 |
There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 |
The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
- results [Map<UUID,Object>]
-
This is a Mapping between the User Ids that had errors and the errors that were encountered.
- results[userId].parseErrors [Map<String,String>]
-
Contains any parse errors that occurred while parsing the Email Template parts. The key of the Map is the field that failed (i.e. from) and the value is the error message.
- results[userId].renderErrors [Map<String,String>]
-
Contains any template errors that occurred while executing the Email Template parts. The key of the Map is the field that failed (i.e. from) and the value is the error message.
{
"results": {
"00000000-0000-0001-0000-000000000000": {
"renderErrors": {
"html": "freemarker.core.InvalidReferenceException: The following has evaluated to null or missing:\n==> requestData.not [in nameless template at line 1, column 3]\n\n----\nTip: It's the step after the last dot that caused this error, not those before it.\n----\nTip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use [#if myOptionalVar??]when-present[#else]when-missing[/#if]. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??\n----\n\n----\nFTL stack trace (\"~\" means nesting-related):\n\t- Failed at: ${requestData.not.here} [in nameless template at line 1, column 1]\n----"
}
}
}
}