mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
This commit replaces the previous SMS templates. I’ve written a couple of new ones which are plausible for developers on the hack day: - one with placeholders - one without
13 lines
374 B
Python
13 lines
374 B
Python
templates = [
|
||
{
|
||
'type': 'sms',
|
||
'name': 'Confirmation with details Jan 2016',
|
||
'body': '((name)), we’ve received your ((thing)). We’ll contact you again within 1 week.'
|
||
},
|
||
{
|
||
'type': 'sms',
|
||
'name': 'Confirmation Jan 2016',
|
||
'body': 'We’ve received your payment. We’ll contact you again within 1 week.'
|
||
}
|
||
]
|