我正在尝试为我的wordpress网站制作电子邮件模板。因此,我尝试包含提供给我的HTML模型,但不是将其直接放在同一个文件中,而是希望包含()。下面是返回错误的代码。
include(get_template_directory_uri() . \'/inc/email_templates/quote.php\');
$message = $top_of_body;
$message .= "<h1><strong>Name</strong></h1>: " . $name . "\\r\\n";
$message .= "<h1><strong>E-mail</strong></h1>: " . $fromEmail . "\\r\\n";
$message .= "<p>" . $comments . "</p>";
$message .= $bottom_of_body;
$headers = "MIME-Version: 1.0" . "\\r\\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1" . "\\r\\n";
$headers .= "From: " . $fromEmail . "\\r\\n";
$headers .= "Reply-To: " . $fromEmail . "\\r\\n";
我测试了在同一个文件中为电子邮件编写HTML,它可以工作,所以问题只出现在include上。“我该怎么做?”;启用(&Q);此功能?
这是我的错误警告:allow\\u url\\u include=0在服务器配置中禁用了https://wrapper