mimemail_example.install 385 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for Mime Mail Example module.
  5. */
  6. /**
  7. * Implements hook_enable().
  8. */
  9. function mimemail_example_enable() {
  10. mailsystem_set(array('mimemail_example' => 'MimeMailSystem'));
  11. }
  12. /**
  13. * Implements hook_disable().
  14. */
  15. function mimemail_example_disable() {
  16. mailsystem_clear(array('mimemail_example' => 'MimeMailSystem'));
  17. }