One of the simple things about a traditional WordPress sites is sending emails, this plugin makes it easy to do this via a simple mutation when you are using WPGraphQL.
- Set list of allowed origins in admin
- Set CC address in admin
- Set default From address in admin
composer require ashhitch/wp-graphql-send-mail
mutation SEND_EMAIL {
  sendEmail(
    input: {
      to: "[email protected]"
      from: "[email protected]"
      subject: "test email"
      body: "test email"
      clientMutationId: "test"
    }
  ) {
    origin
    sent
    message
  }
}
To try stop unauthorised emails you can set a list of domains that can send emails through the mutation.
These are set under Settings > WPGraphQL Mail from your WordPress Admin
Want to get Yoast data via WPGraphQL? Checkout my other plugin
Mail Icon by Good Ware

