- Locate your Joomla!/components/ folder. Delete the folder named com_rsmail.
- Locate your Joomla!/administrator/components/ folder. Delete the folder named com_rsmail.
- Connect to your MySQL database and remove all of the _rsmail tables. For example, if your Joomla! database prefix is "jos", remove all tables that start with jos_rsmail. For instance, use this SQL script: DROP TABLE `jos_rsmail_config`, `jos_rsmail_files`, `jos_rsmail_integrations`, `jos_rsmail_lists`, `jos_rsmail_list_fields`, `jos_rsmail_messages`, `jos_rsmail_reports`, `jos_rsmail_sessions`, `jos_rsmail_session_details`, `jos_rsmail_subscribers`, `jos_rsmail_subscriber_details`, `jos_rsmail_templates`, `jos_rsmail_unsubscribers`
- Browse the _components table. Delete all records that have the value com_rsmail in the option column. For instance, use this SQL script: DELETE FROM `jos_components` WHERE `option`='com_rsmail'
- Joomla! 1.6 / 1.7 / 2.5: Browse the _extensions, _assets and _menus tables and erase all com_rsmail entries. For instance, use this SQL queries:
DELETE FROM `jos_extensions` WHERE `element`='com_rsmail'
DELETE FROM `jos_menus` WHERE `link` LIKE '%com_rsmail%'
DELETE FROM `jos_assets` WHERE `name` LIKE '%com_rsmail%'






