We'll create fresh WordPress site with WPGraphQL Send Mail installed. You have 20 minutes to test the plugin after that site we'll be deleted.
This plugin enables to send email via WPGraphQL.
`
mutation SEND_EMAIL {
sendEmail(
input: {
to: “[email protected]”
from: “[email protected]”
subject: “test email”
body: “test email”
clientMutationId: “test”
}
) {
origin
sent
message
}
}
`