Attachments not sent using php mail() function

前端 未结 4 1217

I\'m working on file attachment here. The mail function is working fine other than the file field is empty. I have tried using Content-Type: multipart/mixed and som

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-28 02:30

    update your form opening tag with

    add below code before starting for if condition

    if ($_FILES['upload']['error'] == 0) {
       $filename = $_FILES["upload"]["name"];
       $content = file_get_contents( $_FILES['upload']['tmp_name'] );
       $content = chunk_split(base64_encode($content));
       $uid = md5(uniqid(time()));
    }
    

提交回复
热议问题