📄 ajaxmailattachment.php
字号:
<?php
require_once("inc/config.inc.php");
require_once("inc/pop3lib/pop3.class.php");
require_once("inc/pop3lib/pop3message.class.php");
require_once("inc/pop3lib/pop3header.class.php");
require_once("inc/pop3lib/pop3attachment.class.php");
require_once("inc/AjaxMail.inc.php");
//get information
$id = $_GET["id"];
//create new mailbox
$mailbox = new AjaxMailbox();
//get the attachment
$attachment = $mailbox->getAttachment($id);
//headers
header("Content-Type: $attachment->contentType");
header("Content-Disposition: attachment; filename=$attachment->filename");
//output the body
echo $attachment->data;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -