Add WPGraphql Send Mail
This plugin enables to send email via WPGraphQL.
The facts
- Active installs
- 400+
- Price
- Free
- Last updated
- 18 May 2026
- Added
- Jan 2021
- Requires WP
- 5.0
- Tested up to
- WP 6.9.7
- Requires PHP
- 7.0
- Downloads
- 4,355
Our analysis
AI-assistedAdd WPGraphql Send Mail is a WordPress plugin that allows you to send emails through WPGraphQL. It provides a mutation to send an email with specified parameters such as recipient, sender, subject, and body.
This plugin is suitable for developers who are working with WPGraphQL and need to implement email functionality within their applications.
Best for: Developers using WPGraphQL who require email functionality.
What it does well
- ✓Enables email sending via WPGraphQL
- ✓Allows customization of email parameters
- ✓Free to use from the WordPress.org directory
- ✓Active installation count of 400
Where it falls short
- •Limited feature information available
- •Rating not published
Verdict
This plugin provides a straightforward solution for sending emails through WPGraphQL, but its limited feature set may not suit all needs.
From the developer
ash_hitch's own description of Add WPGraphql Send Mail, lightly tidied.
This plugin enables to send email via WPGraphQL.
Usage
`
mutation SEND_EMAIL {
sendEmail(
input: {
to: “test@test.com”
from: “test@test.com”
subject: “test email”
body: “test email”
clientMutationId: “test”
}
) {
origin
sent
message
}
}
`