You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: manual/customize/basics-families.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -192,9 +192,9 @@ Message footers and headers are likely to contain TT2 code themselves (for examp
192
192
193
193
In that case, you can use the capacity, offered by TT2, to define [custom tag delimitors](http://template-toolkit.org/docs/manual/Config.html#section_START_TAG_END_TAG).
194
194
195
-
Here's an example of such usage. Let's say you want to create lists with a family, and you want that each list automatically adds an unsubscription URL at the bottom of each message. For this, you'll need to use a `message.footer` file in each list.
195
+
Here's an example of such usage. Let's say you want to create lists with a family, and you want that each list automatically adds an unsubscription URL at the bottom of each message. For this, you'll need to use a `message_footer` file in each list.
196
196
197
-
A file named `message.footer.tt2` was added to the family directory. It contains the following code:
197
+
A file named `message_footer.tt2` was added to the family directory. It contains the following code:
198
198
199
199
```code
200
200
[% TAGS <+ +> -%]
@@ -204,7 +204,7 @@ The subject of the list is "<+ subject +>", click here to unsubscribe : [% 'auto
204
204
205
205
"Subject" corresponds to a tag in the XML file. Let's say it contains a short description of the list.
206
206
207
-
Once the family has been instantiated, each list directory will contain a message.footer file containing the following code :
207
+
Once the family has been instantiated, each list directory will contain a `message_footer` file containing the following code :
208
208
209
209
```code
210
210
The subject of the list is "create and share our passion of scrap cooking", click here to unsubscribe : [% 'auto_signoff' | url_abs([listname],{email=>user.email}) %]
@@ -400,7 +400,7 @@ Note: in order to preserve list customization for instantiation, every parameter
400
400
401
401
### Family unsubscription
402
402
403
-
Using a global family message.footer.tt2 file, you can add at the end of each message sent from a family list a global unsubscription link. Here's what you could put in such message.footer.tt2:
403
+
Using a global family `message_footer.tt2` file, you can add at the end of each message sent from a family list a global unsubscription link. Here's what you could put in such `message_footer.tt2`:
0 commit comments