最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

email - How do i send mail with custom Form Data using WordPress

matteradmin10PV0评论

I have a custom HTML form with input types and checkboxes. When I submit this form I want to send a mail will all the form details from the same php. How do I send the email from WordPress? I am pretty new and would thank for ur help.

I have a custom HTML form with input types and checkboxes. When I submit this form I want to send a mail will all the form details from the same php. How do I send the email from WordPress? I am pretty new and would thank for ur help.

Share Improve this question edited Oct 25, 2017 at 17:50 cybmeta 20.7k5 gold badges47 silver badges58 bronze badges asked Oct 25, 2017 at 17:15 SouravSourav 431 gold badge1 silver badge7 bronze badges
Add a comment  | 

3 Answers 3

Reset to default 7

wp_mail is the function you are looking for.

You can take the posted form data ($_POST['email'], for example) and then use it to build and execute the wp_mail function. The example below was taken from https://developer.wordpress/reference/functions/wp_mail/#user-contributed-notes

$to = $_POST['email']; //[email protected]
$subject = 'The subject';
$body = 'The email body content';
$headers = array('Content-Type: text/html; charset=UTF-8');

wp_mail( $to, $subject, $body, $headers );

Also the above script would need to check for malicious attacks or bad input from the user but the wp_mail function will allow you to send email.

Source: https://developer.wordpress/reference/functions/wp_mail/

If you don't want to write your own code (and the mail form), consider a 'contact form' plugin. I use (and recommend) the Contact Form 7 plugin. It allows you to create any form, customize the look/feel/fields, and the mail that is sent out. Very powerful and popular plugin. Lots of other plugins available to add additional fields.

The only minor issue is sparse and sometimes hard-to-find (and sometimes older) technical documentation (like available filters). But I've worked around that.

One simple way to post a form is to use a form backend service like https://www.formkeep

All you have to do is modify the action tag in your form and backend service will store the data and provide ways to integrate data with the other systems.

Here's a sample for how to modify the form html. You would just replace "example token" with a key provided by the formkeep service

<form accept-charset="UTF-8" action="https://formkeep/f/exampletoken" method="POST">
Post a comment

comment list (0)

  1. No comments so far