https://github.com/transmitly/transmitly-template-engine-scriban
Integrates Scriban, a fast and lightweight text templating engine, into Transmitly
https://github.com/transmitly/transmitly-template-engine-scriban
email-templates handlebars liquid mustache sms-templates templating templating-engine templating-language text-templating transmitly
Last synced: 3 months ago
JSON representation
Integrates Scriban, a fast and lightweight text templating engine, into Transmitly
- Host: GitHub
- URL: https://github.com/transmitly/transmitly-template-engine-scriban
- Owner: transmitly
- License: apache-2.0
- Created: 2024-02-17T05:09:37.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-12-22T00:36:45.000Z (4 months ago)
- Last Synced: 2025-12-23T09:53:12.296Z (4 months ago)
- Topics: email-templates, handlebars, liquid, mustache, sms-templates, templating, templating-engine, templating-language, text-templating, transmitly
- Language: C#
- Homepage: https://github.com/transmitly
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Notice: NOTICE
Awesome Lists containing this project
README
# Transmitly.TemplateEngine.Scriban
A [Transmitly](https://github.com/transmitly/transmitly) template engine that enables rendering templates with the [Scriban](https://github.com/scriban/scriban) template engine.
### Getting started
To use the Scriban template engine, first install the [NuGet package](https://nuget.org/packages/transmitly.templateengine.scriban):
```shell
dotnet add package Transmitly.TemplateEngine.Scriban
```
Then add the channel provider using `AddScribanTemplateEngine()`:
```csharp
using Transmitly;
...
var communicationClient = new CommunicationsClientBuilder()
.AddScribanTemplateEngine();
```
* Check out the [Transmitly](https://github.com/transmitly/transmitly) project for more details on what a template engine is and how it can be used to improve how you manage your customer communications.
---
_Copyright © Code Impressions, LLC. This open-source project is sponsored and maintained by Code Impressions
and is licensed under the [Apache License, Version 2.0](http://apache.org/licenses/LICENSE-2.0.html)._