Manages the rendering of parameterised email using templates.
Note: Before sending a pull request with template changes, please look at our guidelines. |
---|
Path | Supported Methods | Description |
---|---|---|
/templates/:templateId |
POST | Renders the email template for the given template Id More... |
Renders the email template for the given template Id and returns the rendered template details.
Example request body - parameters with String type key and values.
{
"parameters": {
"param1" : "Parameter to be used in the email template"
"param2" : "Parameter to be used in the email template"
}
}
Responds with status:
- 200 When the template is rendered successfully
{
"plain": "Rendered template in text format",
"html": "Rendered template in HTML format",
"fromAddress": "From address to be used for this email when sending",
"subject": "Email subject to use",
"service": "The regime (i.e. - sa/paye/etc) that this template belongs to"
}
-
404 When the template with the provided template Id cannot be resolved.
-
400 When an insufficient set of parameters for rendering the template is specified in the request. Only the first missing value is reported.
{
"status": "Rendering of template failed",
"reason": "key not found: param10"
}
Templates can be fiddly to get right as they can ordinarily only be viewed by actually generating an email and sending it. To work around this you can preview templates during development by running the micro-service from sbt:
cd $WORKSPACE/hmrc-email-renderer
sbt -Dhttp.port=8950 -Dapplication.router=testOnlyDoNotUseInAppConf.Routes run
You should be able to list all the templates available for preview from http://localhost:8950/hmrc-email-renderer/test-only/preview.
Note that to render logos correctly the assets frontend also needs to be started using
sm --start ASSETS_FRONTEND -f
Alternatively, you can do a preview of emails by starting the service using sm
to preview the source, snapshot or release versions of the micro-service.
sm --start ASSETS_FRONTEND -f
sm --start EMAIL [-f|-r]
Again, list the templates can then be previewed from
http://localhost:8950/hmrc-email-renderer/test-only/preview
This code is open source software licensed under the Apache 2.0 License