[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fltnqUuxoHV0wD-qy6bldBEbAKKCshxgO03HnjKQZET4":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":11,"num_ratings":13,"last_updated":14,"tested_up_to":15,"requires_at_least":16,"requires_php":17,"tags":18,"homepage":23,"download_link":24,"security_score":25,"vuln_count":26,"unpatched_count":26,"last_vuln_date":27,"fetched_at":28,"vulnerabilities":29,"developer":30,"crawl_stats":27,"alternatives":37,"analysis":146,"fingerprints":247},"html-emails","HTML Emails","1.0","Mohammad Jangda","https:\u002F\u002Fprofiles.wordpress.org\u002Fbatmoo\u002F","\u003Cp>Converts the default plain-text email notifications into fully customizable, sweet-lookin’ HTML emails.\u003C\u002Fp>\n\u003Cp>Multi-site support (for WordPress 3.0) will be added soon.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Notes:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Emails are sent with readable plain-text versions for email clients that don’t support HTML emails. Note: they’re somewhat crude because they’re auto-generated. I may decide to add decent-looking plain-text versions in the future, but that’s low priority.\u003C\u002Fli>\n\u003Cli>Emails have only been tested on Gmail, Gmail on Android, and Outlook, but should work on most email clients (including clients without HTML support). If you’re using a client other than the 3 I’ve listed, I would appreciate \u003Ca href=\"mailto:batmoo@gmail.com\" rel=\"nofollow ugc\">an email\u003C\u002Fa> with info on whether the email looks like it should and works correctly.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Send your questions, comments, suggestions \u003Ca href=\"mailto:batmoo@gmail.com\" rel=\"nofollow ugc\">via email\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Customizing Templates\u003C\u002Fh3>\n\u003Cp>You can fully customize the look of any of the emails by creating your own templates. Emails have two pieces:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Email Wrapper (content common across all emails)\u003C\u002Fli>\n\u003Cli>Email Message (content unique to each email)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Custom templates can be created an placed in either your theme directory or your Content directory (\u002Fwp-content\u002F on most sites). See utils.php for a number of useful functions that you can use in your templates.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Email Wrapper\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The Email Wrapper includes elements and markup that are common across all email notifications. It contains your html, head and body tags and any other elements that are shared across emails.\u003C\u002Fp>\n\u003Cp>To customize the email template, create a file called \u003Ccode>html_email.php\u003C\u002Fcode> and add it to either your theme or content directory.\u003C\u002Fp>\n\u003Cp>Note: you must include the following code in the template to work:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php htmlize_message_body($email_templates, $email_data); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The Email Wrapper has access to the following variables:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$email_title: (string) title of the email\u003C\u002Fli>\n\u003Cli>$email_subtitle: (string) subtitle of the email\u003C\u002Fli>\n\u003Cli>$email_data: (array) Associative array of various data passed by the calling function\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Email Message: New Comment\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>By default, new comment and comment moderation emails share the same template. You can create separate templates for both for each comment type by creating the following files:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>notify_postauthor_comment.php\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>notify_postauthor_trackback.php\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>notify_postauthor_pingback.php\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>notify_moderator_comment.php\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>notify_moderator_trackback.php\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>notify_moderator_pingback.php\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>If you don’t want to customize the emails by comment type, just create the following two templates:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>notify_postauthor.php\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>notify_moderator.php\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>If you just want a custom template shared between the two notification types, just create the following:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>notify_comment.php\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>New Comment email messages have the following data variables available:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$comment              – (obj) comment object\u003C\u002Fli>\n\u003Cli>$post                 – (obj) post object \u003C\u002Fli>\n\u003Cli>$comment_type         – (string) slug for the comment_type\u003C\u002Fli>\n\u003Cli>$comment_type_text    – (string) friendly name for the comment_type\u003C\u002Fli>\n\u003Cli>$comment_moderate     – (bool) Whether the comment needs moderation or not\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Using HTML Emails in your plugin\u003C\u002Fh3>\n\u003Cp>It’s pretty easy to use. The main call you need to make is htmlize_message() and pass the return into your wp_mail object. Details to come.\u003C\u002Fp>\n\u003Ch3>Credits\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Blockquote image borrowed from the amazing \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fthemes\u002Fwu-wei\" rel=\"ugc\">Wu Wei theme by Jeff Ngan\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Plain Text conversion script by \u003Ca href=\"http:\u002F\u002Fwww.chuggnutt.com\u002Fhtml2text.php\" rel=\"nofollow ugc\">Jon Abernathy aka Chuggnutt\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Email styling inspired by \u003Ca href=\"http:\u002F\u002Fen.support.wordpress.com\u002Fblog-subscriptions\u002F\" rel=\"nofollow ugc\">WordPress.com Blog Subscription Notifications\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n","Converts the default plain text email notifications into fully customizable, sweet-lookin' HTML emails.",20,7680,1,"2010-05-05T16:06:00.000Z","3.0.5","2.9","",[19,20,21,4,22],"email","html","html-email","notification","http:\u002F\u002Fdigitalize.ca","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fhtml-emails.1.0.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":31,"display_name":7,"profile_url":8,"plugin_count":32,"total_installs":33,"avg_security_score":25,"avg_patch_time_days":34,"trust_score":35,"computed_at":36},"batmoo",5,1340,30,84,"2026-04-04T11:03:18.535Z",[38,59,81,104,127],{"slug":39,"name":40,"version":41,"author":42,"author_profile":43,"description":44,"short_description":45,"active_installs":46,"downloaded":47,"rating":48,"num_ratings":49,"last_updated":50,"tested_up_to":51,"requires_at_least":52,"requires_php":53,"tags":54,"homepage":57,"download_link":58,"security_score":48,"vuln_count":26,"unpatched_count":26,"last_vuln_date":27,"fetched_at":28},"email-customizer","Email Customizer","1.1.0","Noptin Newsletter Team","https:\u002F\u002Fprofiles.wordpress.org\u002Fpicocodes\u002F","\u003Cp>\u003Cstrong>Email Customizer is a lightweight Email Customizer Plugin For WordPress. Now works with WooCommerce\u003C\u002Fstrong>\u003Cbr \u002F>\n★★★★★\u003C\u002Fp>\n\u003Cp>With this plugin, you can convert the plain text emails that WordPress sends into beautiful HTML emails.\u003C\u002Fp>\n\u003Cp>These include the emails that WordPress sends to users after they create an account on your website or request to reset their password.\u003C\u002Fp>\n\u003Cp>The email customizer plugin wraps all your WordPress emails inside of a HTML template. As a result, the colors and appearance of your emails will match that of your website.\u003C\u002Fp>\n\u003Cp>You can edit the email template and set text sizes, colors and backgrounds. You can also define custom CSS for your emails and it will be inlined inside the emails.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Noptin is a free and lightweight WordPress newsletter plugin. \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fnewsletter-optin-box\u002F\" rel=\"ugc\">Learn more\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fp>\n","Easily replace the plain text WordPress emails with beautiful HTML emails that match your brand colors. All without writing a single line of code.",300,7145,100,2,"2025-06-09T13:29:00.000Z","6.8.5","4.7","5.6",[19,39,55,56,4],"email-designer","email-template","https:\u002F\u002Fgithub.com\u002Fhizzle-co\u002Femail-customizer","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Femail-customizer.1.1.0.zip",{"slug":60,"name":61,"version":62,"author":63,"author_profile":64,"description":65,"short_description":66,"active_installs":67,"downloaded":68,"rating":69,"num_ratings":70,"last_updated":71,"tested_up_to":72,"requires_at_least":73,"requires_php":17,"tags":74,"homepage":79,"download_link":80,"security_score":25,"vuln_count":26,"unpatched_count":26,"last_vuln_date":27,"fetched_at":28},"email-manager","Email Manager","0.2","Ayebare Mucunguzi Brooks","https:\u002F\u002Fprofiles.wordpress.org\u002Fbrooksx\u002F","\u003Cp>This plugin provides you with a platform to send and schedule beautiful professional email and WordPress notifications to Selected WordPress User groups.\u003Cbr \u002F>\nIt allows for archiving emails enabling use of view in browser link in the html emails. You can create re-usable HTML email templates for emails sent on the regular.\u003C\u002Fp>\n\u003Cp>Features:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Creation of Reusable HTML Email templates\u003C\u002Fli>\n\u003Cli>Short-codes for view in browser link, unsubscribe link and posts content\u003C\u002Fli>\n\u003Cli>Scheduling of emails to be sent on at a future date\u003C\u002Fli>\n\u003Cli>Timed emails that are sent after a user preset time interval\u003C\u002Fli>\n\u003Cli>Allows modification of the in-built WordPress notices  \u003C\u002Fli>\n\u003Cli>Auto inline styling of your HTML email styles to enable correct display on several email clients\u003C\u002Fli>\n\u003Cli>Many more to come!\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Short Codes\u003C\u002Fh3>\n\u003Cp>This page lists the different ShortCodes that are availed by Email Manager.\u003C\u002Fp>\n\u003Ch4>Special links Short Codes\u003C\u002Fh4>\n\u003Ch4>Unsubscribe link in Emails\u003C\u002Fh4>\n\u003Cp>[wpem link=unsubscribe]\u003C\u002Fp>\n\u003Cp>*This short code adds an unsubscribe link for Users in your email. When users click this link, they will be automatically unsigned from the emailing list if they are logged in or directed to a page with unsubscribing instructions. That page along with the link text can be set from Email Manager’s settings page.\u003C\u002Fp>\n\u003Ch4>View email in browser link\u003C\u002Fh4>\n\u003Cp>[wpem archive=7]\u003C\u002Fp>\n\u003Cp>*This short code should only be used if you are using an “un-edited” Email Template. This will produce a link to that Email template that can be viewed in the browser.  The link text can be configured in Email Manager settings.\u003Cbr \u002F>\nThe shortcode above will produce a link pointing to Email Template with ID 7\u003C\u002Fp>\n\u003Ch4>Post ShortCodes\u003C\u002Fh4>\n\u003Cp>These short codes are used to include a post, page or custom post type link, title, body or excerpt into an Email\u003C\u002Fp>\n\u003Cp>[wpem id=4 content=title]\u003Cbr \u002F>\n*Adds the title of post with id 4 to the email.\u003C\u002Fp>\n\u003Cp>[wpem id=4 content=post_link]\u003Cbr \u002F>\n*Adds the permalink of post with id 4 to the email.\u003C\u002Fp>\n\u003Cp>[wpem id=4 content=title_link]\u003Cbr \u002F>\n*Adds a link pointing to post with id 4 with the post title as the link text to the email.\u003C\u002Fp>\n\u003Cp>[wpem id=4 content=excerpt]\u003Cbr \u002F>\n*Adds the excerpt of post with id 4 to the email.\u003C\u002Fp>\n\u003Cp>[wpem id=4 content=body]\u003Cbr \u002F>\n*Adds the content of post with id 4 to the email.\u003C\u002Fp>\n\u003Cp>[wpem id=1 content=img]\u003Cbr \u002F>\n*Adds a featured image\u003C\u002Fp>\n\u003Cp>[wpem id=1 content=img img_size=thumb-medium]\u003Cbr \u002F>\n*Adds a featured image with image size medium any image sizes defined in WordPress will work\u003C\u002Fp>\n","Email Manager helps you send and schedule beautiful professional email and WordPress notifications.",10,5107,80,3,"2015-01-20T04:29:00.000Z","4.1.42","3.0",[75,76,4,77,78],"bulk-mail","emails","notices","schedule","http:\u002F\u002Fzanto.org","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Femail-manager.0.2.zip",{"slug":82,"name":83,"version":84,"author":85,"author_profile":86,"description":87,"short_description":88,"active_installs":89,"downloaded":90,"rating":91,"num_ratings":92,"last_updated":93,"tested_up_to":51,"requires_at_least":94,"requires_php":95,"tags":96,"homepage":100,"download_link":101,"security_score":102,"vuln_count":13,"unpatched_count":26,"last_vuln_date":103,"fetched_at":28},"cf7-email-add-on","Email addon for CF7","2.0","KrishaWeb","https:\u002F\u002Fprofiles.wordpress.org\u002Fkrishaweb\u002F","\u003Cp>Email addon for CF7 is the email configuration extension to the Contact Form 7. It lets you customize the contact form email both for users and admin. You can select the most suitable email template from the pre-developed templates and easily customize the template as per your requirements. You can add and update the content, links, graphics and buttons of the email template that too without expert coding skills.\u003C\u002Fp>\n\u003Cp>Different pre-developed email templates lets also enables you to do the A\u002FB testing to understand the user behavior and improve the conversion rate. It is not just a contact from 7 email add on, it also helps you with your conversion optimization process. It is easy to install, set up and requires minimum technical skills to update.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>\u003Cstrong>Plugin Features\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>10+ Pre-developed responsive email templates\u003C\u002Fli>\n\u003Cli>Multiple Email templates for Contact Form 7\u003C\u002Fli>\n\u003Cli>Single step template selection \u003C\u002Fli>\n\u003Cli>Click to copy shortcode\u003C\u002Fli>\n\u003Cli>User can see special mail tags on the plugin popup\u003C\u002Fli>\n\u003Cli>Can add\u002Fremove form fields \u003C\u002Fli>\n\u003Cli>Ability to customize pre-developed templates\u003C\u002Fli>\n\u003Cli>Compatible with WordPress 4.6 and above \u003C\u002Fli>\n\u003Cli>Compatible with Contact Form 7 version 5 and above\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>PRO Plugin Features\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>18+ Pre-developed responsive email templates\u003C\u002Fli>\n\u003Cli>Can download HTML Template for external use\u003C\u002Fli>\n\u003Cli>Compatible with custom shortcode\u003C\u002Fli>\n\u003Cli>Preview template & send test email\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fblockquote>\n\u003Ch4>Buy Contact Form 7 Email Add On Pro on Codecanyon :\u003C\u002Fh4>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fcodecanyon.net\u002Fitem\u002Fcontact-form-7-email-add-on-pro\u002F23172379\" rel=\"nofollow ugc\">https:\u002F\u002Fcodecanyon.net\u002Fitem\u002Fcontact-form-7-email-add-on-pro\u002F23172379\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Check such amazing email add-on for Ninja form as well at \u003Ca href=\"https:\u002F\u002Fcodecanyon.net\u002Fitem\u002Fninja-forms-email-add-on\u002F22782567\" rel=\"nofollow ugc\">https:\u002F\u002Fcodecanyon.net\u002Fitem\u002Fninja-forms-email-add-on\u002F22782567\u003C\u002Fa>. It comes with all these features for Ninja form along with some additional features.\u003C\u002Fp>\n","Email addon for CF7 plugin provides the responsive Email templates to admin and users.",3000,36707,92,9,"2025-09-26T07:28:00.000Z","6.6","7.4",[97,98,56,21,99],"cf7","contactform7","shortcode","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcf7-email-add-on\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcf7-email-add-on.2.0.zip",98,"2024-11-20 00:00:00",{"slug":105,"name":106,"version":107,"author":108,"author_profile":109,"description":110,"short_description":111,"active_installs":112,"downloaded":113,"rating":48,"num_ratings":114,"last_updated":115,"tested_up_to":116,"requires_at_least":117,"requires_php":95,"tags":118,"homepage":123,"download_link":124,"security_score":125,"vuln_count":49,"unpatched_count":26,"last_vuln_date":126,"fetched_at":28},"gd-mail-queue","GD Mail Queue","4.4","Milan Petrovic","https:\u002F\u002Fprofiles.wordpress.org\u002Fgdragon\u002F","\u003Cp>The plugin adds a mail queue system that can intercept all the emails sent through the \u003Ccode>wp_mail\u003C\u002Fcode> function, and depending on the predefined rules (number of recipients), sent the email into the queue, with each recipient getting their email. On top of that, the plugin can process all plain text emails and wrap them in the HTML, and send them as HTML, with options to customize the template and various other aspects.\u003C\u002Fp>\n\u003Ch4>How the plugin works\u003C\u002Fh4>\n\u003Cp>The central part of the plugin, called ‘Mailer,’ controls the process.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Intercept every \u003Ccode>wp_mail\u003C\u002Fcode> call\u003C\u002Fli>\n\u003Cli>If needed, wrap email in HTML\u003C\u002Fli>\n\u003Cli>Determine the number of recipients\u003C\u002Fli>\n\u003Cli>If eligible, add each recipient email into the queue\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Process of turning plain text into HTML emails, support all emails sent through wp_mail, even if they don’t end in the queue. This can turn all WordPress system emails (registration, password reset…) into HTML emails and you can choose between predefined HTML templates, or register own templates via filter.\u003C\u002Fp>\n\u003Cp>Queue works through the CRON, as a background job, and you can configure how many emails to send in a batch, with the timeout setting to prevent PHP timeout breaking the sending process.\u003C\u002Fp>\n\u003Ch4>Email Sending\u003C\u002Fh4>\n\u003Cp>Emails are sent using PHPMailer built into WordPress. But, the plugin has additional options to control the queue sending process and the wp_mail sending process.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Email sending engine based on PHPMailer class\u003C\u002Fli>\n\u003Cli>PHPMailer options to use SMTP for sending emails\u003C\u002Fli>\n\u003Cli>Customize email From for all emails passed through \u003Ccode>wp_mail\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>Customize email From, Reply, and Sender for all emails sent through the queue\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Email Logging\u003C\u002Fh4>\n\u003Cp>The plugin includes an advanced email log.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Custom database tables to store logs, made for performance\u003C\u002Fli>\n\u003Cli>Store all relevant data for each email, including a list of attachments\u003C\u002Fli>\n\u003Cli>Email log panel with filters for logged emails\u003C\u002Fli>\n\u003Cli>Preview popup displaying all logged email details\u003C\u002Fli>\n\u003Cli>Preview popup shows the full HTML email part preview\u003C\u002Fli>\n\u003Cli>Retry sending any failed emails through the queue\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Security related features\u003C\u002Fh4>\n\u003Cp>The plugin will attempt to strip malicious content from intercepted email, and sanitize the email plain text before generating HTML version, with the option to control the scope of the HTML tags to allow. HTML from subject will be striped. Emails stored in the log will be additionally sanitized, and on display, email content will be again escaped or run through KSES to avoid issues.\u003C\u002Fp>\n\u003Ch4>Other plugin features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Options to pause wp_mail and queue operations\u003C\u002Fli>\n\u003Cli>Dashboard: an overview of the queue (including the last run) statistics\u003C\u002Fli>\n\u003Cli>Dashboard: an overview of the overall mailer statistics\u003C\u002Fli>\n\u003Cli>Dashboard: additional boxes with various other information\u003C\u002Fli>\n\u003Cli>Automatic cleanup of all successfully sent and\u002For failed emails\u003C\u002Fli>\n\u003Cli>Logging of the errors for each email send through the queue\u003C\u002Fli>\n\u003Cli>Developers friendly with various actions and filters for extra control\u003C\u002Fli>\n\u003Cli>Support for intercepting bbPress subscription notifications emails\u003C\u002Fli>\n\u003Cli>Support for the BuddyPress mail system\u003C\u002Fli>\n\u003Cli>Option to set BuddyPress to use WordPress wp_mail() function\u003C\u002Fli>\n\u003Cli>Track email types from emails sent by WordPress, bbPress and more\u003C\u002Fli>\n\u003Cli>Tools to test sending of emails and adding to the queue\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Upgrade to GD Mail Queue Pro\u003C\u002Fh4>\n\u003Cp>Pro version contains many more great features:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>REST API based email sending engines\u003C\u002Fli>\n\u003Cli>REST API Engine: SendGrid\u003C\u002Fli>\n\u003Cli>REST API Engine: Amazon Web Services SES (through free addon)\u003C\u002Fli>\n\u003Cli>REST API Engine: Gmail (through free addon)\u003C\u002Fli>\n\u003Cli>REST API Engine: Mailgun (through free addon)\u003C\u002Fli>\n\u003Cli>REST API Engine: Mailjet (through free addon)\u003C\u002Fli>\n\u003Cli>REST API Engine: SendInBlue (through free addon)\u003C\u002Fli>\n\u003Cli>PHPMailer third-party SMTP services support\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: Amazon Web Services SES\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: Mailgun\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: Mailjet\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: Mandrill\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: PostMark\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: PepiPost\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: SendGrid\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: SendInBlue\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: SendPulse\u003C\u002Fli>\n\u003Cli>PHPMailer SMTP Service: SparkPost\u003C\u002Fli>\n\u003Cli>Panel to show everything currently in queue\u003C\u002Fli>\n\u003Cli>Email Notifications with daily and weekly statistics\u003C\u002Fli>\n\u003Cli>Email Notifications with daily and weekly errors logged\u003C\u002Fli>\n\u003Cli>Safe staging support with email redirection\u003C\u002Fli>\n\u003Cli>HTMLfy support for uploading logos\u003C\u002Fli>\n\u003Cli>Improved dashboard with various control buttons\u003C\u002Fli>\n\u003Cli>Improved log with the email role-based filtering\u003C\u002Fli>\n\u003Cli>Tool to preview HTML template\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>With more features on the roadmap exclusively for the Pro version.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>More information about \u003Ca href=\"https:\u002F\u002Fplugins.dev4press.com\u002Fgd-mail-queue\u002F\" rel=\"nofollow ugc\">GD Mail Queue Pro\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Compare \u003Ca href=\"https:\u002F\u002Fplugins.dev4press.com\u002Fgd-mail-queue\u002Farticles\u002Flite-vs-pro\u002F\" rel=\"nofollow ugc\">Free vs. Pro Plugin\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>More Information and Support\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>More information about \u003Ca href=\"https:\u002F\u002Fplugins.dev4press.com\u002Fgd-mail-queue\u002F\" rel=\"nofollow ugc\">GD Mail Queue\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>Support and Knowledge Base for \u003Ca href=\"https:\u002F\u002Fsupport.dev4press.com\u002Fkb\u002Fproduct\u002Fgd-mail-queue\u002F\" rel=\"nofollow ugc\">GD Mail Queue\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Important\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>The plugin only works with the default WordPress \u003Ccode>wp_mail\u003C\u002Fcode> function that uses the \u003Ccode>PHPMailer\u003C\u002Fcode> object.\u003C\u002Fli>\n\u003Cli>The plugin doesn’t replace \u003Ccode>wp_mail\u003C\u002Fcode> or PHPMailer and uses default function and class built into WordPress.\u003C\u002Fli>\n\u003Cli>It is not advisable to use this plugin and some other plugin that manipulates WordPress \u003Ccode>PHPMailer\u003C\u002Fcode> object.\u003C\u002Fli>\n\u003Cli>Plugin doesn’t support plugins replacing the \u003Ccode>wp_mail\u003C\u002Fcode> function (Sendgrid, WP Offload SES, and similar).\u003C\u002Fli>\n\u003C\u002Ful>\n","Intercept emails sent with wp_mail() into flexible mail queue for sending emails, convert plain text emails to HTML, email log, and more.",800,13867,11,"2024-12-03T19:12:00.000Z","6.7.5","5.9",[119,120,21,121,122],"dev4press","email-log","queue","smtp","https:\u002F\u002Fplugins.dev4press.com\u002Fgd-mail-queue\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgd-mail-queue.zip",90,"2024-12-28 00:00:00",{"slug":128,"name":129,"version":130,"author":131,"author_profile":132,"description":133,"short_description":134,"active_installs":135,"downloaded":136,"rating":48,"num_ratings":32,"last_updated":137,"tested_up_to":138,"requires_at_least":139,"requires_php":17,"tags":140,"homepage":144,"download_link":145,"security_score":25,"vuln_count":26,"unpatched_count":26,"last_vuln_date":27,"fetched_at":28},"lh-multipart-email","LH Multipart Email","1.12","shawfactor","https:\u002F\u002Fprofiles.wordpress.org\u002Fshawfactor\u002F","\u003Cp>This is a plugin you need but probably don’t realise. It does one thing very well and very simply. For every HTML email sent by WordPress it will provide a text alternative (within the one email).\u003C\u002Fp>\n\u003Cp>99% of all email clients will just show the HTML version of the email. The other 1% can’t properly display HTML and will show the plain text email. Without this plugin, they would have had nothing to show. The other major benefit of this plugin come from the fact that will reduce the chances of the emails you send ending up in the recipients spam folder.\u003C\u002Fp>\n\u003Cp>If you have more question about the why’s of this plugin, take a look at the FAQ.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Like this plugin? Please consider \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fview\u002Fplugin-reviews\u002Flh-multipart-email\u002F\" rel=\"ugc\">leaving a 5-star review\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Love this plugin or want to help the LocalHero Project? Please consider \u003Ca href=\"https:\u002F\u002Flhero.org\u002Fportfolio\u002Flh-multipart-email\u002F\" rel=\"nofollow ugc\">making a donation\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fp>\n","Decreases the chance of your legit emails being marked as spam by providing a text alternative within the one email.",700,6515,"2022-07-30T17:16:00.000Z","6.0.11","5.5",[19,21,141,142,143],"multipart","spam","text-email","https:\u002F\u002Flhero.org\u002Fportfolio\u002Flh-multipart-email\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Flh-multipart-email.zip",{"attackSurface":147,"codeSignals":163,"taintFlows":232,"riskAssessment":233,"analyzedAt":246},{"hooks":148,"ajaxHandlers":159,"restRoutes":160,"shortcodes":161,"cronEvents":162,"entryPointCount":26,"unprotectedCount":26},[149,155],{"type":150,"name":151,"callback":152,"file":153,"line":154},"action","init","htmlize","html-emails.php",50,{"type":150,"name":156,"callback":157,"file":153,"line":158},"phpmailer_init","htmlize_pre_send",53,[],[],[],[],{"dangerousFunctions":164,"sqlUsage":165,"outputEscaping":170,"fileOperations":49,"externalRequests":26,"nonceChecks":26,"capabilityChecks":26,"bundledLibraries":231},[],{"prepared":26,"raw":13,"locations":166},[167],{"file":168,"line":69,"context":169},"includes\\emails.php","$wpdb->get_var() with variable interpolation",{"escaped":26,"rawEcho":34,"locations":171},[172,176,178,181,183,185,187,188,190,192,194,196,198,200,203,205,207,209,211,212,214,215,216,218,220,221,223,225,227,229],{"file":173,"line":174,"context":175},"includes\\class.html2text.php",350,"raw output",{"file":173,"line":177,"context":175},362,{"file":179,"line":180,"context":175},"includes\\utils.php",23,{"file":179,"line":182,"context":175},31,{"file":179,"line":184,"context":175},48,{"file":179,"line":186,"context":175},73,{"file":179,"line":69,"context":175},{"file":179,"line":189,"context":175},88,{"file":179,"line":191,"context":175},96,{"file":179,"line":193,"context":175},103,{"file":179,"line":195,"context":175},149,{"file":179,"line":197,"context":175},150,{"file":179,"line":199,"context":175},151,{"file":201,"line":202,"context":175},"templates\\html_email.php",13,{"file":201,"line":204,"context":175},14,{"file":201,"line":206,"context":175},37,{"file":208,"line":32,"context":175},"templates\\new_user_admin.php",{"file":208,"line":210,"context":175},16,{"file":208,"line":11,"context":175},{"file":213,"line":32,"context":175},"templates\\new_user_user.php",{"file":213,"line":210,"context":175},{"file":213,"line":11,"context":175},{"file":217,"line":92,"context":175},"templates\\notify_comment.php",{"file":217,"line":219,"context":175},15,{"file":217,"line":210,"context":175},{"file":217,"line":222,"context":175},29,{"file":217,"line":224,"context":175},62,{"file":217,"line":226,"context":175},63,{"file":228,"line":219,"context":175},"templates\\password_change_admin.php",{"file":228,"line":230,"context":175},19,[],[],{"summary":234,"deductions":235},"The \"html-emails\" plugin v1.0 presents a mixed security posture. On the surface, the lack of apparent entry points like AJAX handlers, REST API routes, and shortcodes, combined with zero known CVEs, suggests a potentially safe plugin. However, the static analysis reveals significant weaknesses that undermine this initial impression.  The complete absence of capability checks and nonce checks is a major concern, as it implies that any functionality, if discovered, would be accessible to any user role.  The fact that 100% of SQL queries are not using prepared statements is a critical vulnerability, exposing the site to SQL injection risks. Furthermore, the complete lack of output escaping for all identified outputs means that any dynamic content displayed by the plugin is susceptible to Cross-Site Scripting (XSS) attacks.  The vulnerability history being empty is a positive indicator, but it should not overshadow the serious flaws identified in the code analysis. In conclusion, while the plugin has a clean historical record, the current version exhibits critical security deficiencies in data handling and output sanitization that require immediate attention. The potential for severe vulnerabilities is high due to the insecure coding practices.",[236,238,241,244],{"reason":237,"points":67},"SQL queries do not use prepared statements",{"reason":239,"points":240},"No output escaping for any output",8,{"reason":242,"points":243},"No nonce checks found",7,{"reason":245,"points":243},"No capability checks found","2026-03-16T22:58:29.914Z",{"wat":248,"direct":255},{"assetPaths":249,"generatorPatterns":252,"scriptPaths":253,"versionParams":254},[250,251],"\u002Fwp-content\u002Fplugins\u002Fhtml-emails\u002Ftemplates\u002Fhtml_email.php","\u002Fwp-content\u002Fplugins\u002Fhtml-emails\u002Ftemplates\u002Fnotify_comment.php",[],[],[],{"cssClasses":256,"htmlComments":264,"htmlAttributes":265,"restEndpoints":278,"jsGlobals":279,"shortcodeOutput":280},[257,258,259,260,261,262,263],"content","post","post-details","post-title","footer","table-avatar","meta",[],[266,267,268,269,270,271,272,273,274,275,276,277,267],"htmlize_the_email_logo","htmlize_maybe_linkify","htmlize_the_gravatar","htmlize_the_date","htmlize_the_time","htmlize_get_whois_link","htmlize_the_image","htmlize_the_action_button","htmlize_get_comment_admin_link","htmlize_get_date_format","htmlize_get_time_format","htmlize_get_plain_text_message",[],[],[]]