popsu-d7/sites/all/modules/smtp/tests/smtp_tests.module
Bachir Soussi Chiadmi 8d8a60b615 security upadtes
2017-09-25 15:16:35 +02:00

17 lines
347 B
Plaintext

<?php
/**
* @file
* Primary hook implementations for the SMTP test helper module.
*/
/**
* Implements hook_mail().
*/
function smtp_tests_mail($key, &$message, $params) {
// A very rudimentary test.
if ($key == 'smtp_basic_test') {
$message['subject'] = t('Test email subject');
$message['body'][] = t('Test email body.');
}
}