Skip to content

Instantly share code, notes, and snippets.

@agsdot
agsdot / mail-test.php
Created April 10, 2018 22:52 — forked from Dreyer/mail-test.php
Quick & Dirty PHP Mail Test Script
<?php
/*
DONT FORGET TO DELETE THIS SCRIPT WHEN FINISHED!
*/
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = '[email protected]';
@agsdot
agsdot / mailhog.md
Created May 24, 2018 22:49 — forked from opi/mailhog.md
Install and configure MailHog (for Drupal) with a nice systemd unit and apache reverse proxy

MailHog (for Drupal) on Debian Stretch

MailHog is a nice mail testing tool for developers.

Website: https://github.com/mailhog/MailHog

Installation

Download the latest release on your local machine

@agsdot
agsdot / open_source_church_software.md
Created December 4, 2018 00:32 — forked from seven1m/open_source_church_software.md
List of Open Source Church Software
@agsdot
agsdot / convert.sh
Created December 5, 2018 18:51 — forked from danveloper/convert.sh
Java to Groovy converter in bash!!
#!/bin/sh
find . -iname "*.java" -exec sed s/\;$// {} \;