wp-graphql-send-mail
wp-graphql-send-mail copied to clipboard
Send emails via mutation using WpGraphQl
i installed plugin on my wordpress locally. this is my query i want to run in GraphiQL IDE mutation SEND_EMAIL { sendEmail( input: {to: "[email protected]", from: "[email protected]", subject: "test email",...
I am using this plugin to send a contact form email., this will be handled by a server. My WPGraphQL server does not require authentication for queries, only for mutations....
This feature allows developer to put multiple emails in their carbon copy.
Is there a way to set SMTP settings with this plugin? (server/username/password)
I think it would be a great feature to be able to send attachments through the plugin. At the moment i'm implementing a "work with us" on which a user...
Email setting or query variables will overwrite the custom headers like here ``` if (isset($from) && !empty($from)) { $headers[] = 'From: ' . $from; } else if (isset($defaultFrom) && !empty($defaultFrom))...
I'd like to be able to solve the following use case ``` $to = "[email protected]"; $header = "FROM: John Doe";