从电子邮件链接下载触发器文件

时间:2014-02-19 15:28:30

标签: php ajax wordpress email download

我已生成一封电子邮件,其中包含用户应点击并下载文件的链接。 消息变量“$ message”包含我通过将href链接到文件位置来实现此目的。

    function senddivorceGuide() { 
    if(isset($_POST['action']) && $_POST['action'] =="senddivorceGuide") {
        $details = $_POST['info'];
        $name = $details[0];
        $to = trim($details[1]) ;

        $subject = "Divorce Guide";
        $message = $name ."<h1> Thank you for your Interest on our Guide
    , click on the         link below to download it.</h1><br><a 
      href=\"http://www_site_co_uk/wp-content/uploads/2013/10/file.pdf/\">Click here to download the guide</a> ";          
        $headers[] = "Content-type: text/html";           
        wp_mail($to,$subject,$message, $headers);           
        $headers = "Content-type: text/plain";

 }   

}

当用户点击链接时,如何自动触发下载? 提前谢谢大家

1 个答案:

答案 0 :(得分:0)

您是否只能链接到消息字符串中的PDF文档?如果PDF文件托管在可通过Web访问的位置,则单击指向该文件的链接将启动用户的浏览器并立即打开该文件。