douhan8430 2015-06-23 09:41
浏览 38
已采纳

PHP - 成功上传文件后如何发送电子邮件? [重复]

This question already has an answer here:

I need a PHP to send an email if a file was uploaded successfully. My code is working fine like this:

<?php

  $target_dir = "gallery-sys/";
  $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
  $uploadOk = 1;
  $imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);

  if (file_exists($target_file)) {
    echo "File already exists.";
    $uploadOk = 0;
  }

  if ($uploadOk == 0) {
    echo "Error - file was not uploaded.";
  } else {
    if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
       echo "File". basename( $_FILES["fileToUpload"]["name"]). " was uploaded successfully.";
    }
  }

?>

but I need email functionality. It doesn't even work anymore if I add those 6 lines:

<?php

  $target_dir = "gallery-sys/";
  $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
  $uploadOk = 1;
  $imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);

  if (file_exists($target_file)) {
    echo "File already exists.";
    $uploadOk = 0;
  }

  if ($uploadOk == 0) {
    echo "Error - file was not uploaded.";
  } else {
    if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
      echo "File". basename( $_FILES["fileToUpload"]["name"]). " was uploaded successfully.";

      $to = "szabo@atria.sk";
      $url = $_POST['current_url'];
      $subject = "New image was uploaded";
      $message = "URL:" . $url ;
      $headers = "Gallery" "
" . 'Content-Type: text/plain; charset=UTF-8';
      mail($to,$subject,$message,$headers);
    }
  }

?>

Is there an error in my code?

</div>
  • 写回答

2条回答 默认 最新

  • douxi5940 2015-06-23 09:54
    关注

    Just to be a little more complete:

    You are missing a so called String Operator ('.') between your two strings:

    $headers = "Gallery" "
    " . 'Content-Type: text/plain; charset=UTF-8';
    

    Should be

    $headers = "Gallery" . "
    " . 'Content-Type: text/plain; charset=UTF-8';
    

    Or

    $headers = "Gallery
    " . 'Content-Type: text/plain; charset=UTF-8';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 informer代码训练自己的数据集,改参数怎么改
  • ¥15 请看一下,学校实验要求,我需要具体代码
  • ¥50 pc微信3.6.0.18不能登陆 有偿解决问题
  • ¥20 MATLAB绘制两隐函数曲面的交线
  • ¥15 求TYPCE母转母转接头24PIN线路板图
  • ¥100 国外网络搭建,有偿交流
  • ¥15 高价求中通快递查询接口
  • ¥15 解决一个加好友限制问题 或者有好的方案
  • ¥15 急matlab编程仿真二阶震荡系统
  • ¥20 TEC-9的数据通路实验