GD Mail Queue

Intercept emails sent with wp_mail() into flexible mail queue for sending emails, convert plain text emails to HTML, email log, and more.

v4.4Milan PetrovicUpdated Added 700 installs100% rating
24
Score
502
Errors
582
Warnings
+0
Change

Category Scores

Security0
Repo94
Performance100
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

1,084 findings

Security

542

10 issue groups

Maintainability

413

13 issue groups

I18n

79

2 issue groups

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<li><strong>Group:</strong> $group - ( "'.293
Category
Security
Occurrences
293
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<li><strong>Group:</strong> $group - ( "'.

WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;RandomCompat_intval&quot;.133
Category
Maintainability
Occurrences
133
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;RandomCompat_intval&quot;.

WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;$RandomCompatCOMtest&quot;.117
Category
Maintainability
Occurrences
117
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;$RandomCompatCOMtest&quot;.

WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.80
Category
Security
Occurrences
80
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORI18nText Domain MismatchMismatched text domain. Expected 'gd-mail-queue' but got "d4plib".59
Category
I18n
Occurrences
59
Severity
error

Sample message

Mismatched text domain. Expected 'gd-mail-queue' but got "d4plib".

WARNINGSecurityRequest data is not unslashed$_GET[&#039;_nonce&#039;] not unslashed before sanitization. Use wp_unslash() or similar46
Category
Security
Occurrences
46
Severity
warning

Sample message

$_GET[&#039;_nonce&#039;] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES[&#039;import_file&#039;][&#039;tmp_name&#039;]45
Category
Security
Occurrences
45
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_FILES[&#039;import_file&#039;][&#039;tmp_name&#039;]

WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;d4pCheckboxRadioWalker&quot;.32
Category
Maintainability
Occurrences
32
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;d4pCheckboxRadioWalker&quot;.

WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_FILES[&#039;import_file&#039;][&#039;tmp_name&#039;]. Check that the array index exists before using it.25
Category
Security
Occurrences
25
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_FILES[&#039;import_file&#039;][&#039;tmp_name&#039;]. Check that the array index exists before using it.

ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;24
Category
Maintainability
Occurrences
24
Severity
error

Sample message

PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;

Show 15 more
WARNINGMaintainabilityNon-prefixed constant20
Category
Maintainability
Occurrences
20
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;D4PLIB_CACERT_PATH&quot;.

ERRORI18nMissing Translators Comment20
Category
I18n
Occurrences
20
Severity
error

Sample message

A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.

ERRORSecurityException output is not escaped19
Category
Security
Occurrences
19
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$message'.

ERRORMaintainabilityfile system operations fclose18
Category
Maintainability
Occurrences
18
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().

ERRORMaintainabilitydate date13
Category
Maintainability
Occurrences
13
Severity
error

Sample message

date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.

WARNINGMaintainabilityDynamic hook name12
Category
Maintainability
Occurrences
12
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;$this-&gt;base . &#039;_&#039; . $this-&gt;scope . &#039;_settings_get&#039;&quot;.

WARNINGMaintainabilityNon-prefixed hook name10
Category
Maintainability
Occurrences
10
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;check_ajax_referer&quot;.

WARNINGSecuritywp redirect wp redirect10
Category
Security
Occurrences
10
Severity
warning

Sample message

wp_redirect() found. Using wp_safe_redirect(), along with the &quot;allowed_redirect_hosts&quot; filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.

ERRORMaintainabilityfile system operations fopen10
Category
Maintainability
Occurrences
10
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().

WARNINGMaintainabilityDirect Query9
Category
Maintainability
Occurrences
9
Severity
warning

Sample message

Use of a direct database call is discouraged.

WARNINGMaintainabilityNo Caching9
Category
Maintainability
Occurrences
9
Severity
warning

Sample message

Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().

ERRORSecuritySQL query is not prepared9
Category
Security
Occurrences
9
Severity
error

Sample message

Use placeholders and $wpdb->prepare(); found $query

WARNINGSecurityMissing nonce verification8
Category
Security
Occurrences
8
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORSecurityDatabase parameter is not escaped7
Category
Security
Occurrences
7
Severity
error

Sample message

Unescaped parameter $query used in $wpdb->get_results()\n$query used without escaping.

ERRORMaintainabilityfile system operations fwrite6
Category
Maintainability
Occurrences
6
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().

External Connections

Potential connections found in static code analysis.

26 domains

Outbound calls

104

External assets

1

Incoming endpoints

4

Notable Domains

dev4press.com41 · outbound
support.dev4press.com13 · outbound
texotela.co.uk4 · outbound
bugs.php.net3 · outbound
flag-sprites.com2 · outbound

Platform / Reference Domains

github.com8 · platform/reference
opensource.org4 · platform/reference
gnu.org2 · platform/reference
w3.org2 · platform/reference
wordpress.org1 · platform/reference

External Asset Domains

Incoming Endpoints

No public endpoints detected.

Admin AJAX endpoints4
wp_ajax_gdmaq_log_entry_htmlauthenticated

wp_ajax

wp_ajax_gdmaq_log_entry_previewauthenticated

wp_ajax

wp_ajax_gdmaq_tools_emailtestauthenticated

wp_ajax

wp_ajax_gdmaq_tools_queuetestauthenticated

wp_ajax

Score History

First score snapshot

v4.4

24

Latest

Findings
1,084
Errors
502
Warnings
582
Check
2.0.0

Relationship Map

Author, categories, issues, domains, and nearby plugins.

37 nodes

Related Plugins

Email addon for CF7

3k+ active installs

100
Emails Catch All

600 active installs

99
Email Log

80k+ active installs

95
LH Multipart Email

600 active installs

91