You are here

function amazon_ses_uninstall in Amazon SES 6

Same name and namespace in other branches
  1. 7 amazon_ses.install \amazon_ses_uninstall()

Implementation of hook_uninstall().

File

./amazon_ses.install, line 19
The installation instructions for Amazon SES.

Code

function amazon_ses_uninstall() {
  variable_del('amazon_ses_on');
  variable_del('amazon_ses_filter_format');
  variable_del('amazon_ses_from');
  variable_del('amazon_ses_test_address');
  variable_del('amazon_ses_test_body');
  variable_del('amazon_ses_debugging');
  variable_del('smtp_library');
}