sample_config.lua

changeset 0
a4670b074c77
equal deleted inserted replaced
-1:000000000000 0:a4670b074c77
1 config = {
2 from_name = "Mr Email Sender";
3 from_address = "hi@example.com";
4 subject = "An example email";
5 template = [[
6 Hi $name!
7
8 $content
9
10 Goodbye,
11 Mr E. Sender
12 ]];
13
14 smtp_username = "user";
15 smtp_password = "pass";
16 smtp_server = "smtp.sendgrid.net";
17 smtp_port = 587;
18 }
19

mercurial