wp_acato_email_essentials_history

Static

Stores acato email essentials history data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(11) unsignedNO
sendervarchar(256)NO
ipvarchar(128)NO
recipientvarchar(256)NO
subjectvarchar(256)NO
headerstextNO
bodytextNO
alt_bodytextNO
emlLONGTEXTNO
thedatetimedatetimeNO
statusint(11)NO
errinfotextNO
debugtextNO

CREATE TABLE Statement

CREATE TABLE `wp_acato_email_essentials_history` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `sender` varchar(256) NOT NULL DEFAULT '', `ip` varchar(128) NOT NULL DEFAULT '', `recipient` varchar(256) NOT NULL DEFAULT '', `subject` varchar(256) NOT NULL DEFAULT '', `headers` text NOT NULL, `body` text NOT NULL, `alt_body` text NOT NULL, `eml` LONGTEXT NOT NULL, `thedatetime` datetime NOT NULL, `status` int(11) NOT NULL, `errinfo` text NOT NULL, `debug` text NOT NULL, PRIMARY KEY (`ID`), KEY `sender` (`sender`(255)), KEY `recipient` (`recipient`(255)), KEY `subject` (`subject`(255)), KEY `thedatetime` (`thedatetime`), KEY `status` (`status`) ) DEFAULT CHARSET

Safe to delete?

If you have uninstalled Email Essentials, this table is generally safe to remove. However, always back up your database first.

Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.

How to remove this table

DROP TABLE IF EXISTS `wp_acato_email_essentials_history`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Email Essentials