This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| APP_DEBUG=true | |
| APP_URL=http://example.local | |
| APP_KEY= | |
| DB_CONNECTION=mysql | |
| DB_HOST=localhost | |
| DB_PORT=3306 | |
| DB_DATABASE=website-oc-example-LOCAL | |
| DB_USERNAME=homestead | |
| DB_PASSWORD=secret |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local account = "blah@gmail.com" -- use your own gmail account | |
| local password = "password" -- if you enable 2-phase authentication, you need to | |
| -- generate and use a application-specific password here... | |
| local sender_name = "Jon Snow" | |
| local recipient = "recipient@foo.com" | |
| local recipient_name = "Arya Stark" | |
| local mail_title = "This is a test mail" | |
| local mail_body = [[<html><body><p>Mail Body...</body></html>]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local account = "blah@gmail.com" -- use your own gmail account | |
| local password = "password" -- if you enable 2-phase authentication, you need to | |
| -- generate and use a application-specific password here... | |
| local sender_name = "Jon Snow" | |
| local recipient = "recipient@foo.com" | |
| local recipient_name = "Arya Stark" | |
| -------------------------------------------------------- | |
| local find = ngx.re.find |