Skip to content

Instantly share code, notes, and snippets.

View Deele's full-sized avatar

Nils Deele

View GitHub Profile
@Deele
Deele / mail_tester.php
Last active November 4, 2019 15:34
Mail sending tester via Sfiftmailer (originally made for use with `drupal/swiftmailer` and `drupal/smtp` composer packages installed)
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$autoloadPath = 'autoload.php';
if (!file_exists($autoloadPath)) {
$autoloadPath = '../' . $autoloadPath;
if (!file_exists($autoloadPath)) {
$autoloadPath = '../' . $autoloadPath;
}
@Deele
Deele / backup_drupal_project.sh
Last active August 21, 2019 13:31
Create backup archive of Drupal project files
#!/bin/bash
#
# Settings
#
DIRECTORY="drupal-project"
#
# Begin