You are here

function mail_safety_uninstall in Mail Safety 7.2

Same name and namespace in other branches
  1. 7 mail_safety.install \mail_safety_uninstall()

Implements hook_uninstall().

File

./mail_safety.install, line 87
Install, update, and uninstall functions for the Mail Safety module.

Code

function mail_safety_uninstall() {
  variable_del('mail_safety_enabled');
  variable_del('mail_safety_send_mail_to_dashboard');
  variable_del('mail_safety_send_mail_to_default_mail');
  variable_del('mail_safety_default_mail_address');
}