-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Archives | ||
|
||
A global public archive is maintained on the public web interface. It can be | ||
enabled under Settings -> Settings -> General -> Enable public mailing list | ||
archive. | ||
|
||
To make a campaign available in the public archive (provided it has been | ||
enabled in the settings as described above), enable the option | ||
'Publish to public archive' under Campaigns -> Create new -> Archive. | ||
|
||
When using template variables that depend on subscriber data (such as any | ||
template variable referencing `.Subscriber`), such data must be supplied | ||
as 'Campaign metadata', which is a JSON object that will be used in place | ||
of `.Subscriber` when rendering the archive template and content. | ||
|
||
When individual subscriber tracking is enabled, TrackLink requires that a UUID | ||
of an existing user is provided as part of the campaign metadata. Any clicks on | ||
a TrackLink from the archived campaign will be counted towards that subscriber. | ||
|
||
As an example: | ||
|
||
```json | ||
{ | ||
"UUID": "5a837423-a186-5623-9a87-82691cbe3631", | ||
"email": "example@example.com", | ||
"name": "Reader", | ||
"attribs": {} | ||
} | ||
``` | ||
|
||
![Archive campaign](images/archived-campaign-metadata.png) | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters