Home > Back-end >  How to send contact from data direct to email without saving it on database, in WordPress Contact Fo
How to send contact from data direct to email without saving it on database, in WordPress Contact Fo

Time:11-14

I am currently using WordPress's API to integrate it with Vue.Js, and the request is that contact form which I am using should not save any data to WordPress CMS, it only need to submit it at email.

I am using: Contact Form 7 Plugin for WordPress!

Is there a possible way to do that?

CodePudding user response:

From what I could find, Contact Form 7 doesn't store submissions in the first place, see the screenshot down below.

Message displayed within the Contact Form 7 plugin: enter image description here

However, if you want to stop plugins such as Flamingo from saving submissions on specific forms, you are able to give additional settings to your forms in Contact Form 7. To stop the messages from being stored you can add the setting do_not_store: true. More about additional settings enter image description here

  • Related