forked from digedu/bullet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
50 lines (46 loc) · 1.38 KB
/
config.php
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
<?php
/**
* Bullet Config
* ~~~~~~
* - A simple daily email script to help teams track work done and provoke discussion
* - https://github.com/digedu/bullet
* ~~~~~~
* Released under the MIT License
*/
return array
(
// Send email on the following days:
'days' => array('Mon','Tue','Wed','Thu','Fri'),
// Send email to the following teams:
'teams' => array
(
// Tech Team
array
(
'subject' => "Tech Bullet Points ".date('D jS M'),
'from' => 'Tech Boss <[email protected]>',
'intro' => 'If you have any bullet points "reply all" as needed:',
'bullets' => array
(
'Reply with goals, concerns, ideas or completed tasks for today',
'Write bullet points not paragraphs ;)',
'Format bullet points like this',
)
),
// Sales Team
array
(
'subject' => "Sales Bullet Points ".date('D jS M'),
'from' => 'Sales Boss <[email protected]>',
'intro' => 'If you have any bullet points "reply all" as needed:',
'bullets' => array
(
"Share the prospects with whom you've moved closer to a sale today",
"Share any other actions you've taken to grow acme.com",
"Share any new developments, wins, objections, anecdotes, concerns, or epiphanies",
)
)
)
);