admin管理员组

文章数量:1022769

I would like to run a confirmation e-mail on Contact Form 7

What I want is: Once a form has been submitted, the visitor who sent the form must confirm it by going to the email address. A confirmation link is sent to the e-mail address. And after confirming, the message reaches. Also, after you submit the form, the user will be shown the information text on the form to check the email address.

How can I do this?

I would like to run a confirmation e-mail on Contact Form 7

What I want is: Once a form has been submitted, the visitor who sent the form must confirm it by going to the email address. A confirmation link is sent to the e-mail address. And after confirming, the message reaches. Also, after you submit the form, the user will be shown the information text on the form to check the email address.

How can I do this?

Share Improve this question asked Apr 29, 2019 at 16:45 A. MullerA. Muller 439 bronze badges 3
  • You'll need to check with the plugin developers directly. – WebElaine Commented Apr 29, 2019 at 18:31
  • Thank you. I don't quite understand what you mean. – A. Muller Commented Apr 29, 2019 at 19:50
  • 1 Contact Form 7 is a plugin for WordPress. You'll need to ask the people who made that plugin. :) contactform7/support – WebElaine Commented Apr 29, 2019 at 20:01
Add a comment  | 

1 Answer 1

Reset to default 1

You need to take a look at the hooks of the Contact Form 7 plugin website. Browse the documentation for the actions you need.

Have a look at this topic: how-to-hook-into-contact-form-7-before-send

All you need to do is to add your link with the hash into the e-mail. In addition, also have a look at "wp_mail()". That is the mechanism which triggers an e-mail.

So, catch the e-mail before it is being sent, add your link to it, then trigger the actual mail.

I know, this isn't a complete answer, but adding your own work to it should get you in the right direction.

I would like to run a confirmation e-mail on Contact Form 7

What I want is: Once a form has been submitted, the visitor who sent the form must confirm it by going to the email address. A confirmation link is sent to the e-mail address. And after confirming, the message reaches. Also, after you submit the form, the user will be shown the information text on the form to check the email address.

How can I do this?

I would like to run a confirmation e-mail on Contact Form 7

What I want is: Once a form has been submitted, the visitor who sent the form must confirm it by going to the email address. A confirmation link is sent to the e-mail address. And after confirming, the message reaches. Also, after you submit the form, the user will be shown the information text on the form to check the email address.

How can I do this?

Share Improve this question asked Apr 29, 2019 at 16:45 A. MullerA. Muller 439 bronze badges 3
  • You'll need to check with the plugin developers directly. – WebElaine Commented Apr 29, 2019 at 18:31
  • Thank you. I don't quite understand what you mean. – A. Muller Commented Apr 29, 2019 at 19:50
  • 1 Contact Form 7 is a plugin for WordPress. You'll need to ask the people who made that plugin. :) contactform7/support – WebElaine Commented Apr 29, 2019 at 20:01
Add a comment  | 

1 Answer 1

Reset to default 1

You need to take a look at the hooks of the Contact Form 7 plugin website. Browse the documentation for the actions you need.

Have a look at this topic: how-to-hook-into-contact-form-7-before-send

All you need to do is to add your link with the hash into the e-mail. In addition, also have a look at "wp_mail()". That is the mechanism which triggers an e-mail.

So, catch the e-mail before it is being sent, add your link to it, then trigger the actual mail.

I know, this isn't a complete answer, but adding your own work to it should get you in the right direction.

本文标签: How to Send Confirmation Emails to Users after Form Submission