forked from ActiveCampaign/mailmason
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_config.json
54 lines (54 loc) · 1.43 KB
/
example_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// 1. Copy this file to "config.json" for your own version that won't be
// tracked in source control.
//
// 2. Delete these comments from the configuration so Grunt doesn't get confused
//
// 3. Visit the following page for details:
// https://github.com/wildbit/mailmason/wiki/Getting-Started#configjson
{
"postmark": {
"from": "[email protected]",
"to": "[email protected]",
"subject": "Test Email"
},
"strings": {
"sender_name": "[Jane from Acme]",
"product_name": "[Acme]",
"product_url": "https://example.com",
"credit_card_statement_name": "[Acme Affiliate Corporation, LLC]",
"formal_company_name": "[Acme, LLC]",
"address_line_1": "1234 Street Rd.",
"address_line_2": "Suite 1234",
"city": "Cityville",
"state": "ST",
"country": "United States",
"phone": "123-456-7890",
"litmus_email": "[email protected]"
},
"images": {
"use_images": false,
"images_url": "https://example.com/example/images/",
"logo_file": "logo.png",
"logo_width": "186",
"use_social_circles": false,
"twitter_url": "",
"facebook_url": "",
"pinterest_url": "",
"instagram_url": "",
"google_plus_url": "",
"youtube_url": "",
"linkedin_url": "",
"dribbble_url": ""
},
"ftp": {
"host": "12.34.56.79",
"port": "21",
"src": "src/images",
"dest": "/example/images"
},
"s3": {
"bucket": "",
"region": "",
"overwrite": true
}
}