<?php
/**
 * Uninstall WP Mailer Plugin
 * Clean up when plugin is deleted
 */

// If WordPress is not loaded, exit
if (!defined('WP_UNINSTALL_PLUGIN')) {
    exit;
}

// Remove plugin options
delete_option('wp_mailer_settings');
delete_option('wp_mailer_hidden_panel_enabled');

// Clear cache
wp_cache_flush(); 