一如既往,这里是我学到很多东西的地方。我现在有一个新的东西要学:
我有一个html表单:
<tr><td width="16%">File attachment</td><td width="2%">:</td><td><input type="file" name="fileatt" /></td></tr>
和一个mail.php:
$attachfile=$_POST["fileatt"];
以及用于发送电子邮件的正确 swiftmailer 代码;
我在谷歌上搜索过,我发现了很多示例如何使用存储在网站上的文件发送附件,但我想即时进行。因此,当您提交按钮时,它会将其发送给人们,而不是上传文件。
// Create the Transport
$transport = Swift_SmtpTransport::newInstance('mail.server.co.uk', 25)
->setUsername('user')
->setPassword('pass')
;
// Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);
// Create a message
$message = Swift_Message::newInstance($subject)
->setFrom(array('emai@emai.com' => 'name'))
->setBody($html, 'text/html')
;
// Add alternative parts with addPart()
$message->addPart(strip_tags($html), 'text/plain');
// Send the message
$result = $mailer->send($message);
任何人都可以帮助我如何进行动态文件上传,好吗?提前致谢!!!