Email attachment in PHP?

落爺英雄遲暮 提交于 2019-12-12 03:14:59

问题


I have a page with "File" html input field and a "Submit" button as below:

<form id="formUploadfile" name="formUploadfile" method="post" action="" class="form" enctype="multipart/form-data">
        <label for="name"><strong>File</strong></label>
        <input type="file" name="uploaded_file" size="35" />
        <button type="submit" class="btn_common" id="inquiry_submit" name="inquiry_submit">
            Submit
        </button>
    </form>

I want to send the selected file to a pre-defined email address. In PHP, Do I need to upload the file to my server first before sending it as an attachment email? Or without uploading it to server, it will work.

I Googled but didn't find the answer of above question, please help. If anyone have a code for the same purpose, please provide link.

Thanks


回答1:


Yes, you will need to upload the file to the server first.

Use a mailing class like Swiftmailer to send the file.



来源:https://stackoverflow.com/questions/3582796/email-attachment-in-php

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!