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
| <?php | |
| /** | |
| * Simple PHP mail class using mail() | |
| * | |
| * Strips, converts, etc. Automatically sets required headers. Takes most | |
| * of the work out of the coding side of writing emails. | |
| * | |
| * You should verify that you have an email service installed. | |
| * On Ubuntu, I use ssmtp (see link for manpage) | |
| * |
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
| { | |
| "secret": "Secret set when creating Web Hook" | |
| } |
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
| <?php | |
| /** | |
| * Wrapper for standard PDO class. | |
| * | |
| * This class is meant only to be extended and | |
| * not used directly. It offers only a protected | |
| * __construct method and a public escape. | |
| * | |
| * @author Chris Zuber <[email protected]> | |
| * @copyright 2014, Chris Zuber |
NewerOlder