-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
38 lines (34 loc) · 956 Bytes
/
config.js
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
module.exports = {
twitter: {
consumer_key: "",
consumer_secret: "",
access_token_key: "",
access_token_secret: "",
username: "BW"
},
gmail: {
user: "",
pass: "",
to: "\"Kevin\" <[email protected]>"
},
subjects: [
'I loved this story',
'Awesome article',
'Great work on this story',
'Really cool stuff :)',
'I actually genuinely relate to this article and want to talk to you',
'Nice! Wanna schedule a meeting based on the contents of this article?'
],
bodyMaker: (url, tweet) => {
return `
I really thought this article was really cool!
Here's the article I'm talking about: <a href="${url}">${tweet.text}</a>.<br>
I didn't expect something so cool haha!<br><br>
Hope to work together soon! My astral photography is going great but
I am still a portait photographer.<br><br>
Please.<br><br>
Cheers and Best,<br>
Kevin Roark Jr
`
}
}