我已经构建了一个表单生成器插件。最后一步是将电子邮件发送给网站管理员,但是,我似乎无法弄清楚如何使这项工作。这是我的php邮件处理程序:
if (!empty($errors)) {
// if there are items in our errors array, return those errors
$data['success'] = false;
$data['errors'] = $errors;
} else {
parse_str($_REQUEST['formData'], $formFields);
$html='<html><body>';
foreach ($formFields as $key => $value) {
$html .= '<p><label>' . $key . ' :</label> ' . $value . '</p>';
}
$html .='</body></html>';
$to = get_option('admin_email');
$subject = "Form Submission";
$txt = $html;
$headers = "From: <sam.skirrow@gmail.com>". "\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1"."\r\n";
mail($to,$subject,$txt,$headers);
// if there are no errors process our form, then return a message
// show a message of success and provide a true success variable
$data['success'] = true;
$data['message'] = 'Success!';
}
// return all our data to an AJAX call
echo json_encode($data);
你可以在我的$ to变量中看到我添加了get_option(&#39; admin_email&#39;);但是,这样做会打破我的形式(而不是仅仅写一个电子邮件地址。
答案 0 :(得分:1)
您需要加载WordPress才能使用其get_option
功能。
将其添加到PHP脚本的顶部:
require_once('../../../wp-load.php');