forked from devchas/sendgrid_subscription_widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.js
More file actions
17 lines (13 loc) · 651 Bytes
/
settings.js
File metadata and controls
17 lines (13 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Change the url to the domain of your app
exports.url = 'https://sgsubscriptionwidget.herokuapp.com/';
exports.senderEmail = "coerver-news@coerver.co.jp";
exports.senderName = "クーバー通信";
// set 'exports.listId = null' to add contact to all contacts, but no specific list
// or a string with the listId to add to a specific list
exports.listId = 13095339;
// set 'exports.templateId = null' to opt out of using a template
// or a string with the templateId to use a template
exports.templateId = null;
// receive an email when a new signup is confirmed
exports.sendNotification = true;
exports.notificationEmail = "admin@example.com";