[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$f6BTIjI-zjUGNtuBGX5N_IpuUKsBnz5yQ5ZXcVrm-uKo":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":15,"download_link":25,"security_score":13,"vuln_count":11,"unpatched_count":11,"last_vuln_date":26,"fetched_at":27,"vulnerabilities":28,"developer":29,"crawl_stats":26,"alternatives":34,"analysis":132,"fingerprints":268},"api-mailer-for-aws-ses","API Mailer for AWS SES","1.4","beltoftnet","https:\u002F\u002Fprofiles.wordpress.org\u002Fbeltoftnet\u002F","\u003Cp>API Mailer for AWS SES replaces \u003Ccode>wp_mail()\u003C\u002Fcode> with a direct Amazon SES API integration (SendRawEmail). There is no SMTP layer or PHPMailer handoff in the critical path, reducing overhead and improving reliability.\u003C\u002Fp>\n\u003Cp>The plugin focuses on correctness, performance, and operational clarity:\u003Cbr \u002F>\n– Direct AWS SigV4 signed requests to SES\u003Cbr \u002F>\n– Minimal overhead in the \u003Ccode>wp_mail()\u003C\u002Fcode> hook\u003Cbr \u002F>\n– Optional background queue with Action Scheduler or wp_cron fallback\u003Cbr \u002F>\n– Optional logging via WooCommerce logger or PHP error_log\u003Cbr \u002F>\n– Clean, PSR-4 structured codebase\u003C\u002Fp>\n\u003Ch3>Key Features\u003C\u002Fh3>\n\u003Col>\n\u003Cli>Direct SES API (SendRawEmail) integration — no SMTP required.\u003C\u002Fli>\n\u003Cli>Background sending queue with Action Scheduler or wp_cron fallback.\u003C\u002Fli>\n\u003Cli>Tiny-args queueing with job IDs to keep cron payloads small and private.\u003C\u002Fli>\n\u003Cli>Configurable rate limiting per second to stay under SES send rate.\u003C\u002Fli>\n\u003Cli>From\u002FReply-To handling with optional forced From and custom X-* headers.\u003C\u002Fli>\n\u003Cli>Test tab to send a test email and a Status tab to fetch SES GetSendQuota.\u003C\u002Fli>\n\u003Cli>Logging via WooCommerce logger or PHP error_log, disabled by default.\u003C\u002Fli>\n\u003Cli>Credentials from wp-config (constants) or saved settings.\u003C\u002Fli>\n\u003Cli>Lightweight, minimal I\u002FO, no Composer dependency.\u003C\u002Fli>\n\u003Cli>Uninstall cleanup toggle to remove settings and queued jobs on deletion.\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch3>Why It’s High Performance\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Avoids SMTP for the send path; uses PHPMailer only for MIME construction, then sends via SES API directly.\u003C\u002Fli>\n\u003Cli>Background queue returns control to the request immediately when enabled.\u003C\u002Fli>\n\u003Cli>Job payloads are stored server-side and referenced by a small \u003Ccode>job_id\u003C\u002Fcode> to avoid large serialized cron arguments.\u003C\u002Fli>\n\u003Cli>Logging is optional and disabled by default to keep I\u002FO low.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Configuration\u003C\u002Fh3>\n\u003Ch3>Credentials in wp-config (recommended)\u003C\u002Fh3>\n\u003Cp>Define the following constants above “That’s all, stop editing!” in \u003Ccode>wp-config.php\u003C\u002Fcode>, then enable “Read AWS credentials from wp-config” in the plugin settings.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>define('SES_MAILER_ACCESS_KEY', 'YOUR_ACCESS_KEY_ID');\ndefine('SES_MAILER_SECRET_KEY', 'YOUR_SECRET_ACCESS_KEY');\ndefine('SES_MAILER_REGION', 'us-east-1');\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>When this mode is enabled, the Access Key, Secret, and Region fields are cleared, disabled, and ignored.\u003C\u002Fp>\n\u003Ch3>Background Sending\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>When enabled, emails are queued and sent out of band by Action Scheduler if available, or by wp_cron as a fallback.\u003C\u002Fli>\n\u003Cli>The plugin stores the full email payload in an option keyed by \u003Ccode>ses_mailer_job_{uuid}\u003C\u002Fcode> (autoload = no) and schedules a tiny cron\u002Faction with only \u003Ccode>job_id\u003C\u002Fcode>.\u003C\u002Fli>\n\u003Cli>Retries: up to 3 total attempts with exponential backoff (60s, then 120s).\u003C\u002Fli>\n\u003Cli>For consistent cron execution on low-traffic sites, configure a real system cron to call \u003Ccode>wp-cron.php\u003C\u002Fcode> regularly.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Rate Limiting\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>A per-email pause is applied based on the configured send rate to avoid exceeding SES limits.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Logging\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>When enabled, log entries route to WooCommerce Status \u003Cspan aria-hidden=\"true\" class=\"wp-exclude-emoji\">→\u003C\u002Fspan> Logs (source: api-mailer-for-aws-ses) if WooCommerce is active, or to the PHP error log otherwise.\u003C\u002Fli>\n\u003Cli>Logging is disabled by default. Uncheck “Disable logging” in settings to enable.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>External Services\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>This plugin connects to Amazon Simple Email Service (AWS SES) at \u003Ccode>https:\u002F\u002Femail.{region}.amazonaws.com\u003C\u002Fcode> to send email and to fetch sending quotas.\u003C\u002Fli>\n\u003Cli>Data sent on each email: recipients, subject, message body, headers, attachments, and your AWS access key ID (signed via AWS SigV4); required to deliver the email.\u003C\u002Fli>\n\u003Cli>Data sent when checking quotas: your AWS access key ID and a signed request; no recipient data is sent.\u003C\u002Fli>\n\u003Cli>Service terms: https:\u002F\u002Faws.amazon.com\u002Fservice-terms\u002F — Privacy: https:\u002F\u002Faws.amazon.com\u002Fprivacy\u002F\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Translations\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Text domain: \u003Ccode>api-mailer-for-aws-ses\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>Translation template: \u003Ccode>languages\u002Fapi-mailer-for-aws-ses.pot\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>Example: Danish \u003Ccode>languages\u002Fapi-mailer-for-aws-ses-da_DK.po\u003C\u002Fcode> (compile to \u003Ccode>.mo\u003C\u002Fcode> for runtime)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>About the Author\u003C\u002Fh3>\n\u003Cp>API Mailer for AWS SES is built and maintained by \u003Ca href=\"https:\u002F\u002Fbeltoft.net\" rel=\"nofollow ugc\">beltoft.net\u003C\u002Fa>.\u003C\u002Fp>\n","Amazon SES API mailer for WordPress that bypasses SMTP and sends via the SES SendRawEmail API with a lightweight, high‑performance design.",0,226,100,1,"","6.9.4","5.6","7.4",[20,21,22,23,24],"api","aws","email","mailer","ses","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fapi-mailer-for-aws-ses.1.4.zip",null,"2026-03-15T10:48:56.248Z",[],{"slug":7,"display_name":7,"profile_url":8,"plugin_count":30,"total_installs":11,"avg_security_score":13,"avg_patch_time_days":31,"trust_score":32,"computed_at":33},3,30,94,"2026-04-05T14:46:48.512Z",[35,59,77,92,109],{"slug":36,"name":37,"version":38,"author":39,"author_profile":40,"description":41,"short_description":42,"active_installs":43,"downloaded":44,"rating":13,"num_ratings":14,"last_updated":45,"tested_up_to":46,"requires_at_least":47,"requires_php":48,"tags":49,"homepage":55,"download_link":56,"security_score":57,"vuln_count":11,"unpatched_count":11,"last_vuln_date":26,"fetched_at":58},"enudge","Enudge","0.0.6","contactpoint01","https:\u002F\u002Fprofiles.wordpress.org\u002Fcontactpoint01\u002F","\u003Cp>The Enudge WordPress Plugin seamlessly integrates your WordPress forms and the Chosen Forms plugin with Enudge the leading Email and SMS marketing platform for Australian businesses. This powerful plugin enables you to effortlessly connect your form submissions to your Enudge account via Enudge API, to create a new contact and optionally add that contact into a Message Series, enabling streamlined communication and marketing automation.\u003C\u002Fp>\n\u003Ch3>Key Features\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Easy Integration: Quickly and easily link your WordPress and Chosen Forms with Enudge API.\u003C\u002Fli>\n\u003Cli>Automated Data Sync: Automatically sync form submissions to your Enudge contact lists for efficient email and SMS campaigns.\u003C\u002Fli>\n\u003Cli>Customizable Form Fields: Map form fields to Enudge fields to ensure accurate data transfer and personalized marketing messages.\u003C\u002Fli>\n\u003Cli>Super Fast Performance: Experience lightning-fast integration with no performance issues, ensuring a smooth and efficient user experience.\u003C\u002Fli>\n\u003Cli>Wide Compatibility: Supports the most powerful WordPress form plugins, including:\u003Cbr \u002F>\n** Elementor Forms\u003Cbr \u002F>\n** Contact Form 7\u003Cbr \u002F>\n** Formidable Forms\u003Cbr \u002F>\n** Forminator Forms\u003Cbr \u002F>\n** FluentForms\u003Cbr \u002F>\n** WPForms\u003Cbr \u002F>\n** Gravity Forms\u003Cbr \u002F>\n** WordPress Comments\u003Cbr \u002F>\n** WooCommerce Reviews\u003Cbr \u002F>\n** WordPress Registration Forms\u003Cbr \u002F>\n** WooCommerce Registration Forms\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Whether you’re a small business or a large enterprise, the Enudge WordPress Plugin helps you maximize your marketing efforts by integrating your form submissions with Australia’s premier email and SMS marketing platform. Start leveraging the power of Enudge today to boost your marketing performance and drive business growth.\u003C\u002Fp>\n\u003Ch3>Third-Party Services\u003C\u002Fh3>\n\u003Cp>This plugin relies on the Enudge service to function. It communicates with the Enudge API to add and manage contacts. By using this plugin, you agree to the terms of service and privacy policies of Enudge.\u003C\u002Fp>\n\u003Cp>Service: \u003Ca href=\"https:\u002F\u002Fwww.enudge.com.au\u002F\" title=\"Enudge\" rel=\"nofollow ugc\">Enudge\u003C\u002Fa>\u003Cbr \u002F>\nTerms of Service: \u003Ca href=\"https:\u002F\u002Fwww.enudge.com.au\u002Fterms-and-conditions\" title=\"Enudge Terms of Service\" rel=\"nofollow ugc\">Enudge Terms of Service\u003C\u002Fa>\u003Cbr \u002F>\nPrivacy Policy: \u003Ca href=\"https:\u002F\u002Fwww.enudge.com.au\u002Fprivacy-policy\" title=\"Enudge Privacy Policy\" rel=\"nofollow ugc\">Enudge Privacy Policy\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>API Endpoint\u003C\u002Fh3>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fhelp.enudge.com.au\u002Fen\u002Farticles\u002F2837974-rest-web-services-for-adding-a-contact\" title=\"Enudge API REST Web Services\" rel=\"nofollow ugc\">Enudge API REST Web Services\u003C\u002Fa>\u003C\u002Fp>\n","Easily integrate your WordPress forms and chosen forms plugin with the Enudge Email and SMS marketing platform API.",50,1397,"2025-02-19T23:11:00.000Z","6.7.5","4.0","7.2",[50,51,52,53,54],"api-integration","australian-businesses","email-marketing","sms-marketing","wordpress-forms","https:\u002F\u002Fenudge.com.au","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fenudge.0.0.6.zip",92,"2026-03-15T15:16:48.613Z",{"slug":60,"name":61,"version":62,"author":63,"author_profile":64,"description":65,"short_description":66,"active_installs":67,"downloaded":68,"rating":11,"num_ratings":11,"last_updated":69,"tested_up_to":16,"requires_at_least":70,"requires_php":71,"tags":72,"homepage":75,"download_link":76,"security_score":13,"vuln_count":11,"unpatched_count":11,"last_vuln_date":26,"fetched_at":58},"nanomailer-for-aws-ses","Nanomailer for AWS SES","1.0.1","ExpandOps","https:\u002F\u002Fprofiles.wordpress.org\u002Fexpandops\u002F","\u003Cp>\u003Cstrong>Nanomailer for AWS SES\u003C\u002Fstrong> is a streamlined WordPress plugin that routes all emails sent using \u003Ccode>wp_mail()\u003C\u002Fcode> through \u003Ca href=\"https:\u002F\u002Faws.amazon.com\u002Fses\u002F\" rel=\"nofollow ugc\">Amazon Simple Email Service (SES)\u003C\u002Fa> — a highly reliable, scalable cloud-based email platform.\u003C\u002Fp>\n\u003Cp>It supports Contact Form 7, Gravity Forms, WPForms, and any other plugin that uses the standard WordPress mailing function. Nanomailer handles the full process of authenticating with AWS, preparing email headers, and securely delivering messages through the SES API.\u003C\u002Fp>\n\u003Cp>There is no bloat or unnecessary overhead. It’s built with a focus on speed, clean integration, and minimal configuration. When removed, it leaves behind no database clutter.\u003C\u002Fp>\n\u003Ch3>External Services\u003C\u002Fh3>\n\u003Cp>This plugin connects to \u003Cstrong>Amazon Simple Email Service (SES)\u003C\u002Fstrong> in order to send emails.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Service used:\u003C\u002Fstrong> Amazon Simple Email Service (https:\u002F\u002Faws.amazon.com\u002Fses\u002F)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>What is sent:\u003C\u002Fstrong> When a WordPress email is triggered using \u003Ccode>wp_mail()\u003C\u002Fcode>, the plugin sends the email message (recipient, subject, body, headers) to the SES API endpoint for delivery.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>When:\u003C\u002Fstrong> Only when an email is sent using \u003Ccode>wp_mail()\u003C\u002Fcode>.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Where:\u003C\u002Fstrong> To the regional SES API endpoint (e.g. \u003Ccode>https:\u002F\u002Femail.eu-west-1.amazonaws.com\u003C\u002Fcode>), depending on your configuration.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Is an account required?\u003C\u002Fstrong> Yes, you must have an active AWS account with SES access and a verified email\u002Fdomain.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Terms & Privacy:\u003C\u002Fstrong>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Faws.amazon.com\u002Fservice-terms\u002F\" rel=\"nofollow ugc\">AWS Terms of Use\u003C\u002Fa>  \u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Faws.amazon.com\u002Fprivacy\u002F\" rel=\"nofollow ugc\">AWS Privacy Policy\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003C\u002Ful>\n","A lightweight plugin that sends all WordPress emails via Amazon Simple Email Service (SES) to improve deliverability and reliability.",10,298,"2026-03-10T19:56:00.000Z","5.8","8.0",[73,21,22,24,74],"amazon","wp_mail","https:\u002F\u002Fexpandops.dev\u002Fwordpress-plugins\u002Fnanomailer-for-aws-ses","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fnanomailer-for-aws-ses.1.0.1.zip",{"slug":78,"name":79,"version":62,"author":80,"author_profile":81,"description":82,"short_description":83,"active_installs":67,"downloaded":84,"rating":11,"num_ratings":11,"last_updated":85,"tested_up_to":86,"requires_at_least":87,"requires_php":15,"tags":88,"homepage":89,"download_link":90,"security_score":91,"vuln_count":11,"unpatched_count":11,"last_vuln_date":26,"fetched_at":58},"wp-easy-mail-for-ses","WP easy mail SES","okamos","https:\u002F\u002Fprofiles.wordpress.org\u002Fokamos\u002F","\u003Cp>Easily send emails using Amazon SES.\u003Cbr \u002F>\nThis plugin reconfigures the wp_mail() function and create an option page.\u003C\u002Fp>\n\u003Cp>Note: Before you can send an email using Amazon SES, you must verify email address (or the domain). See http:\u002F\u002Fdocs.aws.amazon.com\u002Fses\u002Flatest\u002FDeveloperGuide\u002Fverify-addresses-and-domains.html\u003C\u002Fp>\n\u003Cp>Features:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Setting AWS access_key_id, secret_key_id, email… etc.\u003C\u002Fli>\n\u003Cli>Validation of Amazon API Credentials and Email.\u003C\u002Fli>\n\u003Cli>Send test message.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Roadmap:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Display send quota.\u003C\u002Fli>\n\u003C\u002Ful>\n","Easy to use. Send emails via AWS Simple Email Service(SES)",1295,"2017-05-18T08:58:00.000Z","4.7.32","3.4",[21,22,24],"https:\u002F\u002Fgithub.com\u002Fokamos\u002Fwp-easy-mail-ses","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-easy-mail-for-ses.1.0.1.zip",85,{"slug":93,"name":94,"version":95,"author":96,"author_profile":97,"description":98,"short_description":99,"active_installs":11,"downloaded":100,"rating":11,"num_ratings":11,"last_updated":101,"tested_up_to":102,"requires_at_least":103,"requires_php":104,"tags":105,"homepage":15,"download_link":108,"security_score":91,"vuln_count":11,"unpatched_count":11,"last_vuln_date":26,"fetched_at":58},"ignite-aws-ses","Better Email","1.0.0","IGNITE®","https:\u002F\u002Fprofiles.wordpress.org\u002Figniteonline\u002F","\u003Cp>Better email by \u003Ca href=\"https:\u002F\u002Figniteonline.com.au\" rel=\"nofollow ugc\">Ignite Online\u003C\u002Fa> lets you deliver your emails reliably via AWS Ses or debug them quickly without sending spam to your clients on Mailtrap.\u003Cbr \u002F>\nThe plugin reads your website environment or the WP_DEBUG mode to understand where to send your emails.\u003Cbr \u002F>\nThis plugins requires an account on both \u003Ca href=\"https:\u002F\u002Fmailtrap.io\u002F\" rel=\"nofollow ugc\">Mailtrap\u003C\u002Fa> and \u003Ca href=\"https:\u002F\u002Faws.amazon.com\u002F\" rel=\"nofollow ugc\">AWS\u003C\u002Fa> to work correctly.\u003C\u002Fp>\n","Deliver and debug your emails reliably.",1038,"2018-06-27T23:43:00.000Z","4.9.29","4.7","5.4",[21,22,106,107,24],"ignite","mailtrap","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fignite-aws-ses.zip",{"slug":110,"name":111,"version":112,"author":113,"author_profile":114,"description":115,"short_description":116,"active_installs":117,"downloaded":118,"rating":119,"num_ratings":120,"last_updated":121,"tested_up_to":16,"requires_at_least":122,"requires_php":18,"tags":123,"homepage":128,"download_link":129,"security_score":130,"vuln_count":14,"unpatched_count":11,"last_vuln_date":131,"fetched_at":58},"site-mailer","Site Mailer – SMTP Replacement, Email API Deliverability & Email Log","1.4.3","Elementor","https:\u002F\u002Fprofiles.wordpress.org\u002Felemntor\u002F","\u003Cp>\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\u002F1hOxkEO-22I?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>\u003C\u002Fp>\n\u003Cp>Has your WordPress site stopped sending emails? Are emails from your WordPress site landing in spam or not getting delivered? Are customers complaining about missing messages?\u003C\u002Fp>\n\u003Cp>With \u003Cstrong>Site Mailer\u003C\u002Fstrong>, you can say goodbye to email issues. Our easy-to-use tool ensures all emails reach their destination while providing you with a detailed email log to track and resend messages if needed.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Enhance your email management effortlessly\u003C\u002Fstrong>. Site Mailer eliminates the need for complex SMTP plugins, providing a streamlined solution for reliable email deliverability. Troubleshoot and monitor with ease using our intuitive interface, so you never miss another email.\u003C\u002Fp>\n\u003Ch3>Key Features\u003C\u002Fh3>\n\u003Ch4>High Deliverability\u003C\u002Fh4>\n\u003Cp>Ensure your emails consistently reach your audience’s inbox with optimized sending methods designed to maximize deliverability and minimize spam risk.\u003C\u002Fp>\n\u003Ch4>Use Your Custom Domain\u003C\u002Fh4>\n\u003Cp>Send emails with your custom domain — or get started quickly with our default email so no email will be lost once you start working with Site Mailer.\u003C\u002Fp>\n\u003Ch4>No Integration or SMTP Plugin Needed\u003C\u002Fh4>\n\u003Cp>Site Mailer works seamlessly without the need for additional API integration or SMTP plugins. This means less hassle and more efficient email management.\u003C\u002Fp>\n\u003Ch4>Easy Setup\u003C\u002Fh4>\n\u003Cp>Get started with Site Mailer in no time. Our intuitive setup process ensures you can configure and start using the plugin quickly and effortlessly.\u003C\u002Fp>\n\u003Ch4>30-Day Log Retention\u003C\u002Fh4>\n\u003Cp>The plugin includes 30 days of email log retention, allowing you to easily track and review your email activity.\u003C\u002Fp>\n\u003Ch4>Compatibility with Popular Plugins\u003C\u002Fh4>\n\u003Cp>Site Mailer has been tested to be fully compatible with most popular WordPress plugins, including Elementor Pro, WooCommerce, Contact Form 7, WPForms and more.\u003C\u002Fp>\n\u003Ch4>Reputation Management\u003C\u002Fh4>\n\u003Cp>Safeguard your email sending reputation with intelligent features that enhance your sender score, ensuring consistent inbox placement and reducing the risk of emails being marked as spam.\u003C\u002Fp>\n\u003Ch4>Email Testing\u003C\u002Fh4>\n\u003Cp>Send a test email to confirm your site is properly configured for seamless transactional email delivery.\u003C\u002Fp>\n\u003Ch4>Resend Failed Emails\u003C\u002Fh4>\n\u003Cp>Did an email fail to deliver? Easily resend it with a single click to ensure your message reaches its intended recipient.\u003C\u002Fp>\n\u003Ch4>Suppression List\u003C\u002Fh4>\n\u003Cp>Enable easy unsubscribe options for your emails. Track and manage all unsubscribed recipients directly in the Suppressions tab.\u003C\u002Fp>\n\u003Ch3>Benefits\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Cstrong>No Integration Needed\u003C\u002Fstrong>: Use Site Mailer without the need for additional plugins or integrations.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Troubleshooting\u003C\u002Fstrong>: Efficiently troubleshoot and resend emails when necessary.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Spam Reduction\u003C\u002Fstrong>: Our plugin will keep your emails out of the spam folder, ensuring that your important messages reach their intended recipients.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Built by the Elementor team\u003C\u002Fstrong>: Leverage the trust and reliability of a solution developed by Elementor.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Get Started Today\u003C\u002Fh3>\n\u003Cp>\u003Cstrong>Transform your website’s email management with Site Mailer!\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>For more information about Site Mailer, visit our \u003Ca href=\"https:\u002F\u002Fgo.elementor.com\u002Fwp-repo-wp-dash-sm-product-page\u002F\" rel=\"nofollow ugc\">official website\u003C\u002Fa>.\u003Cbr \u002F>\nIf you have any questions or need support, feel free to \u003Ca href=\"https:\u002F\u002Fgo.elementor.com\u002Fwp-repo-wp-dash-sm-contact-us\u002F\" rel=\"nofollow ugc\">contact us\u003C\u002Fa> or visit our \u003Ca href=\"https:\u002F\u002Fgo.elementor.com\u002Fwp-repo-wp-dash-sm-help-center\u002F\" rel=\"nofollow ugc\">help center\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>This plugin requires a connection to an active Elementor account in order to identify the user and provide the user with the purchased service. This connection is triggered manually by the user via the plugin’s settings panel. Learn more our \u003Ca href=\"https:\u002F\u002Fgo.elementor.com\u002Fwp-repo-wp-dash-sm-term-and-conditions\u002F\" rel=\"nofollow ugc\">terms and conditions\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>This plugin uses a 3rd party service operated by Elementor, which accepts Email information including but not limited to (from, to, cc,bcc addresses, email body, subject line and attachments). This flow is triggered automatically on every email sending process utilizing the native WordPress \u003Ccode>wp_mail\u003C\u002Fcode> function.\u003C\u002Fp>\n\u003Ch3>Related Plugins\u003C\u002Fh3>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fimage-optimization\u002F\" rel=\"ugc\">Image Optimizer\u003C\u002Fa>: Superior image compression for faster, high-quality website performance.\u003C\u002Fp>\n","Effortlessly manage transactional emails with Site Mailer. High deliverability, logs and statistics, and no SMTP plugins needed.",200000,1804250,40,13,"2026-02-17T13:35:00.000Z","6.6",[22,124,125,126,127],"email-api","email-log","sender","smtp","https:\u002F\u002Felementor.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsite-mailer.1.4.3.zip",98,"2025-02-27 23:34:36",{"attackSurface":133,"codeSignals":186,"taintFlows":260,"riskAssessment":261,"analyzedAt":267},{"hooks":134,"ajaxHandlers":180,"restRoutes":181,"shortcodes":182,"cronEvents":183,"entryPointCount":11,"unprotectedCount":11},[135,141,146,150,155,161,165,168,172,176],{"type":136,"name":137,"callback":138,"file":139,"line":140},"action","plugins_loaded","closure","ses-mailer.php",35,{"type":136,"name":142,"callback":143,"file":144,"line":145},"admin_menu","add_menu","src\\Admin\\AdminPage.php",15,{"type":136,"name":147,"callback":148,"file":144,"line":149},"admin_init","register_settings",16,{"type":136,"name":151,"callback":152,"file":153,"line":154},"ses_mailer_cleanup_jobs","cleanup_stale_jobs","src\\Background\\Queue.php",20,{"type":156,"name":157,"callback":158,"priority":159,"file":160,"line":149},"filter","wp_mail_from","from_email",999,"src\\Mail\\Mailer.php",{"type":156,"name":162,"callback":163,"priority":159,"file":160,"line":164},"wp_mail_from_name","from_name",17,{"type":156,"name":74,"callback":166,"priority":159,"file":160,"line":167},"normalize",18,{"type":156,"name":169,"callback":170,"priority":67,"file":160,"line":171},"pre_wp_mail","send",19,{"type":136,"name":173,"callback":174,"priority":67,"file":160,"line":175},"wp_mail_failed","log_failure",21,{"type":136,"name":177,"callback":178,"file":179,"line":149},"admin_enqueue_scripts","enqueue_admin_assets","src\\Plugin.php",[],[],[],[184],{"hook":151,"callback":151,"file":153,"line":185},22,{"dangerousFunctions":187,"sqlUsage":188,"outputEscaping":191,"fileOperations":11,"externalRequests":14,"nonceChecks":258,"capabilityChecks":14,"bundledLibraries":259},[],{"prepared":189,"raw":11,"locations":190},4,[],{"escaped":192,"rawEcho":193,"locations":194},60,31,[195,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246,248,250,253,254,256],{"file":144,"line":196,"context":197},45,"raw output",{"file":144,"line":199,"context":197},79,{"file":144,"line":201,"context":197},119,{"file":144,"line":203,"context":197},123,{"file":144,"line":205,"context":197},125,{"file":144,"line":207,"context":197},128,{"file":144,"line":209,"context":197},133,{"file":144,"line":211,"context":197},146,{"file":144,"line":213,"context":197},155,{"file":144,"line":215,"context":197},165,{"file":144,"line":217,"context":197},175,{"file":144,"line":219,"context":197},176,{"file":144,"line":221,"context":197},177,{"file":144,"line":223,"context":197},179,{"file":144,"line":225,"context":197},180,{"file":144,"line":227,"context":197},181,{"file":144,"line":229,"context":197},184,{"file":144,"line":231,"context":197},188,{"file":144,"line":233,"context":197},190,{"file":144,"line":235,"context":197},193,{"file":144,"line":237,"context":197},204,{"file":144,"line":239,"context":197},205,{"file":144,"line":241,"context":197},206,{"file":144,"line":243,"context":197},231,{"file":144,"line":245,"context":197},244,{"file":144,"line":247,"context":197},280,{"file":144,"line":249,"context":197},288,{"file":251,"line":252,"context":197},"src\\Logging\\LogViewer.php",37,{"file":251,"line":119,"context":197},{"file":251,"line":255,"context":197},46,{"file":251,"line":257,"context":197},55,2,[],[],{"summary":262,"deductions":263},"The api-mailer-for-aws-ses plugin v1.4 exhibits a generally strong security posture based on the provided static analysis. The absence of any known CVEs, critical taint flows, or dangerous functions is highly positive. The plugin also demonstrates good practices by exclusively using prepared statements for SQL queries and having a minimal attack surface with no unprotected entry points.  However, the static analysis does reveal a notable area of concern: only 66% of output escaping is properly handled. This could potentially lead to cross-site scripting (XSS) vulnerabilities if user-supplied data is rendered directly in the output without adequate sanitization. While the plugin has a history of no recorded vulnerabilities, the existing output escaping issue, though not explicitly cataloged as a vulnerability in the history, represents a potential risk that warrants attention.  Overall, the plugin is well-developed from a security perspective with few apparent weaknesses, but the output escaping issue should be addressed to further strengthen its security.",[264],{"reason":265,"points":266},"Low percentage of properly escaped output",8,"2026-03-17T06:06:18.094Z",{"wat":269,"direct":276},{"assetPaths":270,"generatorPatterns":272,"scriptPaths":273,"versionParams":274},[271],"\u002Fwp-content\u002Fplugins\u002Fapi-mailer-for-aws-ses\u002Fassets\u002Fcss\u002Fadmin.css",[],[],[275],"ses-mailer-admin?ver=1.4",{"cssClasses":277,"htmlComments":278,"htmlAttributes":279,"restEndpoints":280,"jsGlobals":281,"shortcodeOutput":282},[],[],[],[],[],[]]