-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
22 lines (15 loc) · 732 Bytes
/
config.php
File metadata and controls
22 lines (15 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?
// SRC: https://github.com/hamlesh/auto-email-bufferapp
// set your "buffer email address" below. To get your email address
// log into your buffer account, then visit https://bufferapp.com/guides/email
// DON'T SHARE YOUR BUFFER EMAIL ADDRESS WITH ANYONE
$buffer_email = "xxxxxx@to.bufferapp.c.o.m";
// define your SMTP settings below, I've already setup for gmail as default
// your actual email address
$email = "someone@gmail.com";
// your outbound email server:port (eg: stmp.myisp.com:25)
$smtp_server = "ssl://smtp.gmail.com:465";
// username/password for smtp server - if using gmail remember the @gmail at the end of your username
$smtp_username = "someone@gmail.com";
$smtp_password = "yourpassword";
?>