[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fuUZG_R3Qd3GknI7aYgk905-vXye_boWViS3i4nYTQDk":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":25,"download_link":26,"security_score":27,"vuln_count":28,"unpatched_count":29,"last_vuln_date":30,"fetched_at":31,"vulnerabilities":32,"developer":103,"crawl_stats":38,"alternatives":109,"analysis":205,"fingerprints":332},"wp-mail-catcher","Mail logging – WP Mail Catcher","2.1.11","JWardee","https:\u002F\u002Fprofiles.wordpress.org\u002Fwardee\u002F","\u003Cp>Logging your mail will stop you from ever losing your emails again! This fast, lightweight plugin (under 140kb in size!) is also useful for debugging or backing up your messages.\u003C\u002Fp>\n\u003Cp>Just install and activate then all of your contact form emails will be logged and saved to your DB with no additional configuration required.\u003C\u002Fp>\n\u003Cp>View and manage all your form submissions through the default WordPress interface. An email failed to send? With a single click you can resend the backed up email.\u003C\u002Fp>\n\u003Cp>Send emails out directly from the WordPress interface. Also includes support for attachments.\u003C\u002Fp>\n\u003Cp>Immediately find out if your contact form submission was successfully sent.\u003C\u002Fp>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Zero setup required – just install and away you go\u003C\u002Fli>\n\u003Cli>Minimalistic – no overbloated features you never use weighing your site down – under 140kb in size!\u003C\u002Fli>\n\u003Cli>Bulk export emails to CSV for easy inclusion into Excel or any other program\u003C\u002Fli>\n\u003Cli>Compose new emails with the WordPress controls you’re already familiar with\u003C\u002Fli>\n\u003Cli>Resend your emails in bulk\u003C\u002Fli>\n\u003Cli>Debugging – see exactly which file and code line was responsible for sending the email, along with any errors encountered\u003C\u002Fli>\n\u003Cli>Manage what user permissions can see the logs\u003C\u002Fli>\n\u003Cli>Routinely have your logs cleared out at a specified time – or keep them forever\u003C\u002Fli>\n\u003Cli>Need to be notified when there’s a problem sending your mail? We’ve got hooks that allow you to do just that\u003C\u002Fli>\n\u003Cli>Completely free\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Hooks and actions\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ccode>wp_mail_catcher_mail_success\u003C\u002Fcode> is triggered when a message is sent and logged successfully. It has a single argument that is an array containing the log\n\u003Cul>\n\u003Cli>\u003Ccode>id\u003C\u002Fcode> related to the id in the \u003Ccode>mail_catcher_logs\u003C\u002Fcode> MySQL table\u003C\u002Fli>\n\u003Cli>\u003Ccode>time\u003C\u002Fcode> relative, readable time to when the log was saved\u003C\u002Fli>\n\u003Cli>\u003Ccode>email_to\u003C\u002Fcode> the email address(es) that the message was sent to\u003C\u002Fli>\n\u003Cli>\u003Ccode>subject\u003C\u002Fcode> the subject line of the message\u003C\u002Fli>\n\u003Cli>\u003Ccode>message\u003C\u002Fcode> the contents of the message\u003C\u002Fli>\n\u003Cli>\u003Ccode>status\u003C\u002Fcode> an integer depicting if the message was sent successfully or not (1 = sent successfully. 0 = sending failed)\u003C\u002Fli>\n\u003Cli>\u003Ccode>error\u003C\u002Fcode> the error that occurred – if any\u003C\u002Fli>\n\u003Cli>\u003Ccode>backtrace_segment\u003C\u002Fcode> a json_encoded object that shows which file and line the mail was initially triggered from\u003C\u002Fli>\n\u003Cli>\u003Ccode>attachments\u003C\u002Fcode> a list of any attachments that were sent along with the email\u003C\u002Fli>\n\u003Cli>\u003Ccode>additional_headers\u003C\u002Fcode> a list of any headers that were sent\u003C\u002Fli>\n\u003Cli>\u003Ccode>attachment_file_paths\u003C\u002Fcode> a list of the location of any attachments that were sent\u003C\u002Fli>\n\u003Cli>\u003Ccode>timestamp\u003C\u002Fcode> a unix timestamp of when the email was sent\u003C\u002Fli>\n\u003Cli>\u003Ccode>is_html\u003C\u002Fcode> a boolean, that will be true if the message is a html email and false if not\u003C\u002Fli>\n\u003Cli>\u003Ccode>email_from\u003C\u002Fcode> the from value of the email\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\u003Ccode>wp_mail_catcher_mail_failed\u003C\u002Fcode> is triggered when a message failed to send and logged successfully. It has a single argument that is an array containing the log (same as the arguments for \u003Ccode>wp_mail_catcher_mail_success\u003C\u002Fcode>)\u003C\u002Fli>\n\u003Cli>\u003Ccode>wp_mail_catcher_deletion_intervals\u003C\u002Fcode> is a filter that should return an array where each key is an amount of time in seconds, and the value is the label. Used to determine when a message has expired and should be deleted\u003C\u002Fli>\n\u003Cli>\u003Ccode>wp_mail_catcher_before_success_log_save\u003C\u002Fcode> is a filter that is called just before a successful log is saved. It has a single argument that is the transformed log that will be saved – use this to alter the log before it’s saved. Returning \u003Ccode>false\u003C\u002Fcode> will stop the log from being saved. Also note that this is fired even when an email has errored, because all logs are initially saved as “successful” before being possibly updated with an error (if applicable). This is because of the way the \u003Ccode>wp_mail\u003C\u002Fcode> and \u003Ccode>wp_mail_failed\u003C\u002Fcode> are implemented in WordPress.\n\u003Cul>\n\u003Cli>\u003Ccode>time\u003C\u002Fcode> a unix timestamp of when the email was sent\u003C\u002Fli>\n\u003Cli>\u003Ccode>email_to\u003C\u002Fcode> the email address(es) that the message was sent to\u003C\u002Fli>\n\u003Cli>\u003Ccode>subject\u003C\u002Fcode> the subject line of the message\u003C\u002Fli>\n\u003Cli>\u003Ccode>message\u003C\u002Fcode> the contents of the message\u003C\u002Fli>\n\u003Cli>\u003Ccode>backtrace_segment\u003C\u002Fcode> an array that shows which file and line the mail was initially triggered from\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\u003Ccode>wp_mail_catcher_before_error_log_save\u003C\u002Fcode>\n\u003Cul>\n\u003Cli>\u003Ccode>time\u003C\u002Fcode> a unix timestamp of when the email was sent\u003C\u002Fli>\n\u003Cli>\u003Ccode>email_to\u003C\u002Fcode> the email address(es) that the message was sent to\u003C\u002Fli>\n\u003Cli>\u003Ccode>subject\u003C\u002Fcode> the subject line of the message\u003C\u002Fli>\n\u003Cli>\u003Ccode>message\u003C\u002Fcode> the contents of the message\u003C\u002Fli>\n\u003Cli>\u003Ccode>backtrace_segment\u003C\u002Fcode> an array that shows which file and line the mail was initially triggered from\u003C\u002Fli>\n\u003Cli>\u003Ccode>error\u003C\u002Fcode> the error that occurred\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003C\u002Ful>\n","Stop from ever losing your emails again! This fast, lightweight plugin (under 140kb in size!) is also useful for debugging or backing up your messages",20000,252175,98,107,"2025-07-13T12:57:00.000Z","6.8.5","4.7","7.4",[20,21,22,23,24],"email-log","email-logger","email-logging","logging","mail-logging","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-mail-catcher\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-mail-catcher.2.1.11.zip",95,5,0,"2024-09-27 00:00:00","2026-03-15T15:16:48.613Z",[33,49,63,78,91],{"id":34,"url_slug":35,"title":36,"description":37,"plugin_slug":4,"theme_slug":38,"affected_versions":39,"patched_in_version":40,"severity":41,"cvss_score":42,"cvss_vector":43,"vuln_type":44,"published_date":30,"updated_date":45,"references":46,"days_to_patch":48},"CVE-2024-47339","wp-mail-catcher-reflected-cross-site-scripting","WP Mail Catcher \u003C= 2.1.9 - Reflected Cross-Site Scripting","The WP Mail Catcher plugin for WordPress is vulnerable to Reflected Cross-Site Scripting in versions up to, and including, 2.1.9 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link.",null,"\u003C=2.1.9","2.1.10","medium",6.1,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:N\u002FUI:R\u002FS:C\u002FC:L\u002FI:L\u002FA:N","Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')","2024-10-03 13:23:52",[47],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F07534aa5-a7c4-4dc7-82ac-7e9c568f524c?source=api-prod",7,{"id":50,"url_slug":51,"title":52,"description":53,"plugin_slug":4,"theme_slug":38,"affected_versions":54,"patched_in_version":55,"severity":41,"cvss_score":56,"cvss_vector":57,"vuln_type":58,"published_date":59,"updated_date":60,"references":61,"days_to_patch":48},"CVE-2024-32099","wp-mail-catcher-cross-site-request-forgery","WP Mail Catcher \u003C= 2.1.6 - Cross-Site Request Forgery","The WP Mail Catcher plugin for WordPress is vulnerable to Cross-Site Request Forgery in versions up to, and including, 2.1.6. This is due to missing or incorrect nonce validation on several functions. This makes it possible for unauthenticated attackers to perform unauthorized actions via a forged request granted they can trick a site administrator into performing an action such as clicking on a link.","\u003C=2.1.6","2.1.7",4.3,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:N\u002FUI:R\u002FS:U\u002FC:N\u002FI:L\u002FA:N","Cross-Site Request Forgery (CSRF)","2024-04-11 00:00:00","2024-04-17 21:04:11",[62],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002Fcfb45af3-c22a-4045-b564-22f7081868d7?source=api-prod",{"id":64,"url_slug":65,"title":66,"description":67,"plugin_slug":4,"theme_slug":38,"affected_versions":68,"patched_in_version":69,"severity":41,"cvss_score":70,"cvss_vector":71,"vuln_type":72,"published_date":73,"updated_date":74,"references":75,"days_to_patch":77},"CVE-2023-50844","mail-logging-wp-mail-catcher-authenticatedadministrator-sql-injection","Mail logging – WP Mail Catcher \u003C= 2.1.3 - Authenticated(Administrator+) SQL Injection","The Mail logging – WP Mail Catcher plugin for WordPress is vulnerable to SQL Injection via an unknown parameter in all versions up to 2.1.4 (exclusive) due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.  This makes it possible for authenticated attackers, with administrator access and above, to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.","\u003C2.1.4","2.1.4",6.6,"CVSS:3.1\u002FAV:N\u002FAC:H\u002FPR:H\u002FUI:N\u002FS:U\u002FC:H\u002FI:H\u002FA:H","Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')","2023-12-21 00:00:00","2024-01-22 19:56:02",[76],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F47aed582-efb6-4caf-a65b-57995907ecaa?source=api-prod",33,{"id":79,"url_slug":80,"title":81,"description":82,"plugin_slug":4,"theme_slug":38,"affected_versions":83,"patched_in_version":69,"severity":84,"cvss_score":85,"cvss_vector":86,"vuln_type":72,"published_date":87,"updated_date":74,"references":88,"days_to_patch":90},"WF-f3ebbf7f-61f2-403f-8131-8cedeb13c2d4-wp-mail-catcher","mail-logging-wp-mail-catcher-authenticated-admin-sql-injection","Mail logging - WP Mail Catcher \u003C= 2.1.3 - Authenticated (Admin+) SQL Injection","The Mail logging – WP Mail Catcher plugin for WordPress is vulnerable to SQL Injection via several parameters in all versions up to, and including, 2.1.3 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query.  This makes it possible for authenticated attackers, with administrator-level access and above, to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.","\u003C=2.1.3","high",7.2,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:H\u002FUI:N\u002FS:U\u002FC:H\u002FI:H\u002FA:H","2023-10-29 00:00:00",[89],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002Ff3ebbf7f-61f2-403f-8131-8cedeb13c2d4?source=api-prod",86,{"id":92,"url_slug":93,"title":94,"description":95,"plugin_slug":4,"theme_slug":38,"affected_versions":96,"patched_in_version":97,"severity":84,"cvss_score":85,"cvss_vector":98,"vuln_type":44,"published_date":99,"updated_date":74,"references":100,"days_to_patch":102},"CVE-2023-3080","wp-mail-catcher-unauthenticated-stored-cross-site-scripting-via-email-subject","WP Mail Catcher \u003C= 2.1.2 - Unauthenticated Stored Cross-Site Scripting via Email Subject","The WP Mail Catcher plugin for WordPress is vulnerable to Stored Cross-Site Scripting via an email subject in versions up to, and including, 2.1.2 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.","\u003C=2.1.2","2.1.3","CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:N\u002FUI:N\u002FS:C\u002FC:L\u002FI:L\u002FA:N","2023-06-09 00:00:00",[101],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F1525e1c9-4b94-4f9f-92c5-fc69fe000771?source=api-prod",228,{"slug":104,"display_name":7,"profile_url":8,"plugin_count":105,"total_installs":11,"avg_security_score":27,"avg_patch_time_days":106,"trust_score":107,"computed_at":108},"wardee",1,72,85,"2026-04-04T05:28:12.151Z",[110,130,151,170,186],{"slug":111,"name":112,"version":113,"author":114,"author_profile":115,"description":116,"short_description":117,"active_installs":29,"downloaded":118,"rating":29,"num_ratings":29,"last_updated":119,"tested_up_to":120,"requires_at_least":121,"requires_php":18,"tags":122,"homepage":127,"download_link":128,"security_score":129,"vuln_count":29,"unpatched_count":29,"last_vuln_date":38,"fetched_at":31},"mail-via-resend","Mail via Resend","1.0.1","webscapenz","https:\u002F\u002Fprofiles.wordpress.org\u002Fwebscapenz\u002F","\u003Cp>A WordPress plugin that routes all \u003Ccode>wp_mail()\u003C\u002Fcode> calls through \u003Ca href=\"https:\u002F\u002Fresend.com\" rel=\"nofollow ugc\">Resend\u003C\u002Fa>, providing reliable email delivery with comprehensive logging and management features.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Note:\u003C\u002Fstrong> This plugin is not officially associated with or endorsed by Resend. It is an independent, community-developed plugin that integrates with Resend’s API service.\u003C\u002Fp>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>Resend Integration\u003C\u002Fstrong>: All WordPress emails are automatically sent via Resend API\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Email Logging\u003C\u002Fstrong>: Complete email log with searchable, paginated interface\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Settings Management\u003C\u002Fstrong>: Easy configuration of API key and default email settings\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Automatic Cleanup\u003C\u002Fstrong>: Configurable log retention with automatic cleanup via WP-Cron\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Developer Friendly\u003C\u002Fstrong>: Hooks and filters for extensibility\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Configuration\u003C\u002Fh4>\n\u003Cp>Navigate to \u003Cstrong>Settings \u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan> Resend\u003C\u002Fstrong> in the WordPress admin menu to configure your API key and email settings.\u003C\u002Fp>\n\u003Cp>Access the email log via \u003Cstrong>Tools \u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan> Email Log\u003C\u002Fstrong> in the WordPress admin menu.\u003C\u002Fp>\n\u003Ch4>Privacy Policy\u003C\u002Fh4>\n\u003Cp>This plugin collects and stores the following data:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Email addresses of recipients (stored locally in your database)\u003C\u002Fli>\n\u003Cli>Email subjects and body excerpts (first 500 characters, stored locally)\u003C\u002Fli>\n\u003Cli>Email headers (stored locally)\u003C\u002Fli>\n\u003Cli>Email delivery status and Resend API response IDs (stored locally)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>All data is stored locally in your WordPress database and is not transmitted to any third-party service except Resend for the purpose of sending emails. Email logs are stored in a custom database table and can be managed or deleted through the plugin’s admin interface.\u003C\u002Fp>\n\u003Cp>By using this plugin, you consent to sending emails through the Resend service. Please review \u003Ca href=\"https:\u002F\u002Fresend.com\u002Flegal\u002Fprivacy-policy\" rel=\"nofollow ugc\">Resend’s Privacy Policy\u003C\u002Fa> and \u003Ca href=\"https:\u002F\u002Fresend.com\u002Flegal\u002Fterms-of-service\" rel=\"nofollow ugc\">Terms of Service\u003C\u002Fa> for information about how Resend handles your data.\u003C\u002Fp>\n","Send WordPress emails via Resend. Includes email logging and management.",151,"2025-12-04T23:42:00.000Z","6.9.4","5.8",[123,22,124,125,126],"email","mail","resend","smtp","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmail-via-resend\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmail-via-resend.1.0.1.zip",100,{"slug":131,"name":132,"version":133,"author":134,"author_profile":135,"description":136,"short_description":137,"active_installs":138,"downloaded":139,"rating":140,"num_ratings":141,"last_updated":142,"tested_up_to":120,"requires_at_least":143,"requires_php":144,"tags":145,"homepage":147,"download_link":148,"security_score":149,"vuln_count":28,"unpatched_count":29,"last_vuln_date":150,"fetched_at":31},"check-email","Check & Log Email – Easy Email Testing & Mail logging","2.0.12","checkemail","https:\u002F\u002Fprofiles.wordpress.org\u002Fcheckemail\u002F","\u003Cp>In need of a tool that allows you to easily log and view all emails sent from WordPress? Check & Log might be just the solution for that.\u003Cbr \u002F>\nThis WordPress plugin helps you store sent emails for auditing purposes, as well as debug email related problems in your WordPress site. Works best on eCommerce websites that have been created with WooCommerce or Easy Digital Downloads.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002F\" rel=\"nofollow ugc\">Home\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fcontact\u002F\" rel=\"nofollow ugc\">Help & Tech Support\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fdocs\u002F\" rel=\"nofollow ugc\">Documentation\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fpricing\u002F#pro-feature\" rel=\"nofollow ugc\">Premium Features\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>New Features of the plugin Check & Log Email 2.0\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Cstrong>Export Logs\u003C\u002Fstrong> – It allows to export email logs in multiple file format with date range and status \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fdocs\u002Fknowledge-base\u002Fhow-to-export-email-logs-in-check-log-email-plugin\u002F\" rel=\"nofollow ugc\">Learn More\u003C\u002Fa>. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>More Fields\u003C\u002Fstrong> – Such as Cc, Bcc, Host IP, Reply To etc. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Log Retention Period\u003C\u002Fstrong> – It allows to deletes old emails when a certain amount of logs and time has passed. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Print or save as PDF\u003C\u002Fstrong> – You can print the email log, or save it as a PDF. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Resend email\u003C\u002Fstrong> – This feature allow you to modify email and resend email. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Forward Email\u003C\u002Fstrong> – By using this feature you can automatically forward a copy of all emails sent by WordPress to other email addresses \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fdocs\u002Fknowledge-base\u002Fforward-email-option-in-the-check-log-email-plugin\u002F\" rel=\"nofollow ugc\">Learn More\u003C\u002Fa>. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Easy migration\u003C\u002Fstrong> – It is allow you to import data from various plugins like Email Log, Mail logging – WP Mail Catcher, WP Mail Logging, WP Mail Log and export the data. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Email Error Tracking\u003C\u002Fstrong> – You can easily see list of errors of emails and view details of error. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Setup Wizard\u003C\u002Fstrong> – Wizard setup allows you to one time setup of this plugin. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Default Format for Message\u003C\u002Fstrong> – Its allow you to Default Format for Message on view of content. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>SMTP\u003C\u002Fstrong> – Its allow you to setup your own smtp through Check & Email Log SMTP form. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Multisite Configure\u003C\u002Fstrong> – Its allow to configure global setting for all your sites. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Encoding\u003C\u002Fstrong> – Its allow to encode emails and phone in page content. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Outlook \u002F MS 360\u003C\u002Fstrong> – Its allow to send email using 360 \u002F outlook configuration \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fdocs\u002Fknowledge-base\u002Fmicrosoft-365-outlook-smtp-support-in-check-log-email\u002F\" rel=\"nofollow ugc\">Learn More\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Gmail SMTP\u003C\u002Fstrong> – Its allow to send email gmail configuration \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fdocs\u002Fknowledge-base\u002Fgmail-smtp-support-in-check-log-email\u002F\" rel=\"nofollow ugc\">Learn More\u003C\u002Fa>. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Email Spam Testing\u003C\u002Fstrong> – Its allow to testing of your mail for accurate delivery \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fdocs\u002Fknowledge-base\u002Fhow-to-use-the-email-spam-analyzer-an-essential-tool-for-every-e-commerce-store\u002F\" rel=\"nofollow ugc\">Learn More\u003C\u002Fa>.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Features of the plugin Check & Log Email\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Cstrong>Test email sending\u003C\u002Fstrong> – if you’re not sure whether WordPress is sending emails, you can use this plugin to find out. The process is very simple: you need to choose an address that will receive a simple test email. You can even override the custom header with your own values, to avoid any other issues.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Viewing logged emails\u003C\u002Fstrong> – they can be viewed from the admin interface, as they are stored in a separate table. You get the option to filter them based on subject, email, date, etc.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Deleting logged emails\u003C\u002Fstrong> – you can delete them by going to the admin interface. You can either delete them in bulk or  selectively – by date, email, or subject. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Ability to change\u003C\u002Fstrong> the “mail from” email address, “mail from name” and override default email WordPress addresses.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Premium Features of the plugin Check & Log Email\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Cstrong>Triggered Data\u003C\u002Fstrong> – Triggered data helps you in debugging by showing the exact code that is sending that email \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fdocs\u002Fknowledge-base\u002Fhow-to-use-the-trigger-option-to-debug-emails-by-identifying-the-exact-code\u002F\" rel=\"nofollow ugc\">Learn More\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Filters\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\n\u003Cp>\u003Cstrong>wp_mail_catcher_mail_success\u003C\u002Fstrong> –  is triggered before an email is sent. It has a single argument that is an array containing original mail info.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>check_email_email_log_before_insert\u003C\u002Fstrong> –  is triggered before an email data about to save in check & Log Email. It has a two argument.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>log\u003C\u002Fstrong> –  It is an array containing argument that will store in database\u003C\u002Fli>\n\u003Cli>\u003Cstrong>original_mail_info\u003C\u002Fstrong> –   It is an array containing argument of original mail info.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>wp_check_email_failed\u003C\u002Fstrong> –  is triggered when an email is failed. It has a two argument.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>mail_error_data\u003C\u002Fstrong> –  It is an array containing argument that has what possible reasons of error.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>mail_error_message\u003C\u002Fstrong> –   It is an string containing error message.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Action\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\n\u003Cp>\u003Cstrong>check_email_log_inserted\u003C\u002Fstrong> –  is triggered after data successfully saved in log.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>check_email_loaded\u003C\u002Fstrong> –  is triggered when check & log email successfully loaded.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Support\u003C\u002Fstrong>\u003Cbr \u002F>\nWe try our best to provide support on WordPress.org forums. However, We have a special \u003Ca href=\"https:\u002F\u002Fcheck-email.tech\u002Fcontact\u002F\" rel=\"nofollow ugc\">community support\u003C\u002Fa> where you can ask us questions and get help about your Check & Log Email related questions. Delivering a good user experience means a lot to us and so we try our best to reply each and every question that gets asked.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Bug Reports\u003C\u002Fstrong>\u003Cbr \u002F>\nBug reports for Check & Log Email are \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fahmedkaludi\u002Fcheck-email\" rel=\"nofollow ugc\">welcomed on GitHub\u003C\u002Fa>. Please note GitHub is not a support forum, and issues that aren’t properly qualified as bugs will be closed.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Credits\u003C\u002Fstrong>\u003Cbr \u002F>\n* jsPDF used https:\u002F\u002Fgithub.com\u002Fparallax\u002FjsPDF – License URI: https:\u002F\u002Fgithub.com\u002Fparallax\u002FjsPDF\u002Fblob\u002Fmaster\u002FLICENSE\u003Cbr \u002F>\n* league\u002Foauth2-client used https:\u002F\u002Fgithub.com\u002Fthephpleague\u002Foauth2-client – License URI: https:\u002F\u002Fgithub.com\u002Fthephpleague\u002Foauth2-client\u002Fblob\u002Fmaster\u002FLICENSE\u003C\u002Fp>\n","Check & Log email allows you to test if your website is correctly sending emails . Overriding of email headers and carbon copying to another address.",100000,2591078,96,281,"2026-03-03T12:29:00.000Z","5.0","5.6",[123,20,146,23,126],"log","https:\u002F\u002Fcheck-email.tech\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcheck-email.2.0.12.zip",97,"2024-03-25 00:00:00",{"slug":152,"name":153,"version":154,"author":155,"author_profile":156,"description":157,"short_description":158,"active_installs":159,"downloaded":160,"rating":13,"num_ratings":161,"last_updated":162,"tested_up_to":163,"requires_at_least":164,"requires_php":18,"tags":165,"homepage":167,"download_link":168,"security_score":149,"vuln_count":48,"unpatched_count":29,"last_vuln_date":169,"fetched_at":31},"wp-mail-log","WP Mail Log","1.1.4","WPVibes","https:\u002F\u002Fprofiles.wordpress.org\u002Fwpvibes\u002F","\u003Cp>WP Mail Log is a WordPress plugin that allows you to easily log and view all emails that were sent from WordPress. This would be very useful for debugging email related problems in your WordPress site or for storing sent emails for auditing purposes, especially on eCommerce sites.\u003C\u002Fp>\n\u003Ch3>Support\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>If you have a question about the usage of the plugin or need help to troubleshoot, then post in \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fwp-mail-log\u002F\" rel=\"ugc\">WordPress forums\u003C\u002Fa>.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Other Plugins\u003C\u002Fh3>\n\u003Cp>✅  \u003Ca href=\"https:\u002F\u002Fbit.ly\u002F36xcjjy\" rel=\"nofollow ugc\">AnyWhere Elementor Pro\u003C\u002Fa>: AnyWhere Elementor Pro comes with various creative dynamic content widgets that would enhance your Elementor Page Builder experience to build your dream website.\u003Cbr \u002F>\n✅  \u003Ca href=\"https:\u002F\u002Fbit.ly\u002F3Dp0Hez\" rel=\"nofollow ugc\">Form Vibes\u003C\u002Fa>: The ultimate tool to save and manage your Form submissions within WordPress Database.  It also provides a graphical analytics report that allows you to visualize how different forms are performing.\u003Cbr \u002F>\n✅  \u003Ca href=\"https:\u002F\u002Fbit.ly\u002F3uCeIl2\" rel=\"nofollow ugc\">Elementor Addon Elements\u003C\u002Fa>: With the help of Elementor Addon Elements, you can use rich and stunning widgets to build your dream website.\u003Cbr \u002F>\n✅  \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Ffrontend-product-editor\" rel=\"ugc\">Frontend Product Editor\u003C\u002Fa>: Frontend product editor can be a great addition to your WooCommerce websites since it allows you to modify the WooCommerce product information right from the front.\u003Cbr \u002F>\n✅  \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fmap-engine\" rel=\"ugc\">Map Engine\u003C\u002Fa>: An ultimate map builder plugin that meets all of your requirements. One-stop destination to create as many Google Maps and Open Street Maps as you want.\u003C\u002Fp>\n","WP Mail Log helps you to Log and view all emails from WordPress. It is useful if you have to debug email related problems or have to store sent emails &hellip;",10000,119132,64,"2025-04-04T12:45:00.000Z","6.7.5","6.0",[123,20,21,166,124],"logs","https:\u002F\u002Fwpvibes.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-mail-log.zip","2023-12-27 00:00:00",{"slug":171,"name":172,"version":173,"author":174,"author_profile":175,"description":176,"short_description":177,"active_installs":178,"downloaded":179,"rating":129,"num_ratings":180,"last_updated":181,"tested_up_to":120,"requires_at_least":182,"requires_php":18,"tags":183,"homepage":184,"download_link":185,"security_score":129,"vuln_count":29,"unpatched_count":29,"last_vuln_date":38,"fetched_at":31},"log-emails","Log Emails","1.5.0","webaware","https:\u002F\u002Fprofiles.wordpress.org\u002Fwebaware\u002F","\u003Cp>Log emails to the WordPress database for later analysis. Access is restricted to administrators, and emails with WordPress passwords are obfuscated for security \u002F privacy. Useful for diagnosing lost email problems.\u003C\u002Fp>\n\u003Cp>Use this plugin with \u003Ca href=\"https:\u002F\u002Fshop.webaware.com.au\u002Fdownloads\u002Fdisable-emails\u002F\" rel=\"nofollow ugc\">Disable Emails\u003C\u002Fa> to divert all WordPress emails into logs, especially handy for developers.\u003C\u002Fp>\n\u003Cp>Logs are automatically purged after a defined period, set through a settings page in the WordPress admin. Setting the period to 0 prevents logs from being purged. Uninstalling the plugin purges all logs.\u003C\u002Fp>\n\u003Ch3>Translations\u003C\u002Fh3>\n\u003Cp>Many thanks to the generous efforts of our translators:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Czech (cs-CZ) — \u003Ca href=\"http:\u002F\u002Fwww.klusik.cz\u002F\" rel=\"nofollow ugc\">Rudolf Klusal\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>English (en_CA) — \u003Ca href=\"https:\u002F\u002Ftranslate.wordpress.org\u002Flocale\u002Fen-ca\u002Fdefault\u002Fwp-plugins\u002Flog-emails\" rel=\"nofollow ugc\">the English (Canadian) translation team\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>English (en_GB) — \u003Ca href=\"https:\u002F\u002Ftranslate.wordpress.org\u002Flocale\u002Fen-gb\u002Fdefault\u002Fwp-plugins\u002Flog-emails\" rel=\"nofollow ugc\">the English (British) translation team\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>French (fr-FR) — \u003Ca href=\"http:\u002F\u002Fwww.eticweb.ca\u002F\" rel=\"nofollow ugc\">Hugo Catellier\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Korean (ko_KR) — \u003Ca href=\"https:\u002F\u002Ftranslate.wordpress.org\u002Flocale\u002Fko\u002Fdefault\u002Fwp-plugins\u002Flog-emails\" rel=\"nofollow ugc\">the Korean translation team\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>If you’d like to help out by translating this plugin, please \u003Ca href=\"https:\u002F\u002Ftranslate.wordpress.org\u002Fprojects\u002Fwp-plugins\u002Flog-emails\" rel=\"nofollow ugc\">sign up for an account and dig in\u003C\u002Fa>.\u003C\u002Fp>\n","Log emails to the database, to enable email problem analysis",6000,55158,11,"2025-12-14T04:14:00.000Z","4.0",[123,20,23,166],"https:\u002F\u002Fshop.webaware.com.au\u002Fdownloads\u002Flog-emails\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Flog-emails.1.5.0.zip",{"slug":187,"name":188,"version":189,"author":190,"author_profile":191,"description":192,"short_description":193,"active_installs":194,"downloaded":195,"rating":129,"num_ratings":196,"last_updated":197,"tested_up_to":120,"requires_at_least":198,"requires_php":144,"tags":199,"homepage":201,"download_link":202,"security_score":203,"vuln_count":105,"unpatched_count":29,"last_vuln_date":204,"fetched_at":31},"postbox-email-logs","WP Email Log – PostBox","1.0.5","wpdebuglog","https:\u002F\u002Fprofiles.wordpress.org\u002Fwpdebuglog\u002F","\u003Cp>The “WordPress Email Logging – PostBox” plugin saves wp mail sent data from your WordPress.\u003Cbr \u002F>\nBy simply installing the plugin. It will automatically begin to capture the email data (email message, headers, errors) during email sending time.\u003C\u002Fp>\n\u003Ch3>Why need to log emails send from your Website?\u003C\u002Fh3>\n\u003Cp>Easily track emails sent from your website. This will helps you find email headers like Bcc,Cc,reply-to data.\u003C\u002Fp>\n\u003Ch3>Features of PostBox Mail Logging Plugin\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>No configuration is needed\u003C\u002Fli>\n\u003Cli>View mail body HTML (source) code\u003C\u002Fli>\n\u003Cli>Preview email body from wp-admin\u003C\u002Fli>\n\u003Cli>Analyze wp mail errors\u003C\u002Fli>\n\u003Cli>Storing email header data \u003C\u002Fli>\n\u003Cli>Easily debug wp mail issues from the wp mail logs error message\u003C\u002Fli>\n\u003Cli>WooCommerce email logs\u003C\u002Fli>\n\u003Cli>It is working as SMTP logs. We can easily check email data.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFSw5kJ4x6RI?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-mail-smtp-mailer\u002F\" rel=\"ugc\">WP Mail Smtp – SMTP7\u003C\u002Fa>\u003C\u002Fp>\n","Capture email log and view all outgoing emails. Easily debug mail function issues.",700,5896,3,"2026-01-30T03:48:00.000Z","4.8",[123,24,200,152],"mail-logs","https:\u002F\u002Fwpdebuglog.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpostbox-email-logs.1.0.5.zip",99,"2024-12-11 00:00:00",{"attackSurface":206,"codeSignals":267,"taintFlows":317,"riskAssessment":318,"analyzedAt":331},{"hooks":207,"ajaxHandlers":263,"restRoutes":264,"shortcodes":265,"cronEvents":266,"entryPointCount":29,"unprotectedCount":29},[208,213,217,222,225,228,233,239,243,246,249,253,257,259],{"type":209,"name":210,"callback":211,"file":212,"line":77},"filter","wpmu_drop_tables","closure","src\\Bootstrap.php",{"type":209,"name":214,"callback":215,"file":212,"line":216},"plugin_action_links_wp-mail-catcher\u002FWpMailCatcher.php","extraPluginLinks",38,{"type":218,"name":219,"callback":220,"file":212,"line":221},"action","admin_enqueue_scripts","enqueue",39,{"type":218,"name":223,"callback":211,"file":212,"line":224},"plugins_loaded",40,{"type":218,"name":226,"callback":211,"file":212,"line":227},"admin_menu",51,{"type":209,"name":229,"callback":230,"file":231,"line":232},"cron_schedules","addIntervals","src\\CronManager.php",13,{"type":218,"name":234,"callback":235,"priority":236,"file":237,"line":238},"bp_send_email_success","recordMail",10,"src\\Loggers\\BuddyPress.php",17,{"type":218,"name":240,"callback":241,"file":237,"line":242},"bp_send_email_failure","recordError",18,{"type":209,"name":244,"callback":235,"file":245,"line":242},"wp_mail","src\\Loggers\\WpMail.php",{"type":218,"name":247,"callback":241,"file":245,"line":248},"wp_mail_failed",19,{"type":209,"name":250,"callback":251,"file":245,"line":252},"wp_mail_content_type","saveIsHtml",20,{"type":209,"name":250,"callback":254,"file":255,"line":256},"anonymous","src\\Models\\Mail.php",22,{"type":209,"name":250,"callback":254,"file":255,"line":258},180,{"type":209,"name":260,"callback":261,"priority":236,"file":262,"line":238},"set-screen-option","saveOption","src\\ScreenOptions.php",[],[],[],[],{"dangerousFunctions":268,"sqlUsage":269,"outputEscaping":280,"fileOperations":105,"externalRequests":29,"nonceChecks":236,"capabilityChecks":271,"bundledLibraries":316},[],{"prepared":270,"raw":271,"locations":272},9,2,[273,277],{"file":274,"line":275,"context":276},"src\\Models\\Logs.php",245,"$wpdb->get_var() with variable interpolation",{"file":274,"line":278,"context":279},270,"$wpdb->query() with variable interpolation",{"escaped":281,"rawEcho":238,"locations":282},8,[283,286,289,291,293,294,296,298,300,302,303,305,307,309,310,313,314],{"file":284,"line":28,"context":285},"src\\Views\\HtmlMessage.php","raw output",{"file":287,"line":288,"context":285},"src\\Views\\Log.php",74,{"file":287,"line":290,"context":285},91,{"file":292,"line":281,"context":285},"src\\Views\\LogModal.php",{"file":292,"line":242,"context":285},{"file":292,"line":295,"context":285},37,{"file":292,"line":297,"context":285},42,{"file":292,"line":299,"context":285},44,{"file":292,"line":301,"context":285},71,{"file":292,"line":106,"context":285},{"file":292,"line":304,"context":285},75,{"file":292,"line":306,"context":285},76,{"file":292,"line":308,"context":285},83,{"file":292,"line":290,"context":285},{"file":311,"line":312,"context":285},"src\\Views\\Settings.php",66,{"file":311,"line":90,"context":285},{"file":315,"line":105,"context":285},"src\\Views\\TextMessage.php",[],[],{"summary":319,"deductions":320},"The static analysis for wp-mail-catcher v2.1.11 reveals a plugin with a seemingly small attack surface, as indicated by zero AJAX handlers, REST API routes, shortcodes, and cron events. The code signals show a decent usage of prepared statements for SQL queries (82%), and a reasonable number of nonce and capability checks. However, the low percentage of properly escaped output (32%) is a significant concern, suggesting potential for Cross-Site Scripting (XSS) vulnerabilities. The presence of one file operation also warrants scrutiny. Taint analysis shows no critical or high-severity flows, which is a positive sign.  Despite the limited immediate attack vectors and lack of critical taint flows, the plugin's vulnerability history is problematic. With 5 known CVEs, including 2 high and 3 medium severity, it demonstrates a recurring pattern of security weaknesses, particularly related to XSS, CSRF, and SQL Injection. The fact that the last vulnerability was very recent (2024-09-27) suggests ongoing issues that may not be fully mitigated by the current version's static analysis findings. Therefore, while the code might appear clean in some areas, the historical track record points to a persistent need for vigilance and a higher risk of undiscovered or reintroduced vulnerabilities.",[321,323,325,327,329],{"reason":322,"points":281},"Output escaping is low (32%)",{"reason":324,"points":196},"File operations present",{"reason":326,"points":252},"History of 2 high severity CVEs",{"reason":328,"points":252},"History of 3 medium severity CVEs",{"reason":330,"points":236},"Recent vulnerability discovered (2024-09-27)","2026-03-16T17:32:36.673Z",{"wat":333,"direct":342},{"assetPaths":334,"generatorPatterns":337,"scriptPaths":338,"versionParams":339},[335,336],"\u002Fwp-content\u002Fplugins\u002Fwp-mail-catcher\u002Fglobal.min.css","\u002Fwp-content\u002Fplugins\u002Fwp-mail-catcher\u002Fglobal.min.js",[],[336],[340,341],"wp-mail-catcher\u002Fglobal.min.css?v=","wp-mail-catcher\u002Fglobal.min.js?v=",{"cssClasses":343,"htmlComments":344,"htmlAttributes":345,"restEndpoints":378,"jsGlobals":379,"shortcodeOutput":381},[],[],[346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],"data-role=\"message-list-item\"","data-role=\"message-details\"","data-role=\"toggle-details\"","data-role=\"next-page\"","data-role=\"prev-page\"","data-role=\"toggle-next-page\"","data-role=\"toggle-prev-page\"","data-role=\"export-all\"","data-role=\"delete-all\"","data-role=\"search-input\"","data-role=\"advanced-search-trigger\"","data-role=\"advanced-search-form\"","data-role=\"advanced-search-close\"","data-role=\"remove-expired-logs\"","data-role=\"settings-autosave-enable\"","data-role=\"settings-autosave-disable\"","data-role=\"settings-autosave-interval\"","data-role=\"settings-view-role\"","data-role=\"settings-delete-role\"","data-role=\"settings-auto-delete-enable\"","data-role=\"settings-auto-delete-disable\"","data-role=\"settings-auto-delete-interval\"","data-role=\"settings-auto-delete-amount\"","data-role=\"resend-message\"","data-role=\"delete-message\"","data-role=\"export-message\"","data-role=\"copy-message-subject\"","data-role=\"copy-message-to\"","data-role=\"copy-message-from\"","data-role=\"copy-message-body-plain\"","data-role=\"copy-message-body-html\"","data-role=\"copy-message-headers\"",[],[380],"window.wp_mail_catcher",[]]