在Wordpress帖子网址

时间:2016-11-20 17:27:39

标签: php wordpress email session url

我在wordpress中有一个帖子。

[insert_php] 


$_SESSION[ref_no] =1001;


global $wpdb;
$query = $wpdb->get_var("SELECT name FROM table_reg WHERE ref_no = $_SESSION[ref_no]");
echo $query;

[/insert_php]

这篇文章有一个网址:http://localhost/wp/?p=123

我想要的是,当用户数据从表单存储在数据库表中时,需要使用带有上述URL的wp_mail()作为电子邮件生成消息,用户可以从中下载上述& #34;后"数据为pdf,使用session variable作为ref_no。 我缺乏从网址生成pdf文件。

我试图为此编写下面的代码。但是失败了。

[insert_php]
$_SESSION[ref_no] =1001;
$dateTime=date('Y-m-d H:i:s');
$multiple_to_recipients = array(user@eg.com);
$subject = 'You Have registered for DATA on '. $dateTime ;

$message = "Download your registration details by clicking this link: http://localhost/wp/?p=123\n";
$message .= "Email Us:admin@eg.com \n";

$headers = array(
'From: admin@eg.com'

);  

wp_mail( $multiple_to_recipients, $subject, $message, $headers );
[/insert_php]

请帮帮我。

0 个答案:

没有答案