搜尋
首頁PHP 函式庫其它類別庫php的附件郵件類別
php的附件郵件類別
<? 
class CMailFile {  
  
  var $subject;  
  var $addr_to;  
  var $text_body;  
  var $text_encoded;  
  var $mime_headers;  
  var $mime_boundary = "--==================_846811060==_";  
  var $smtp_headers;  
    
  function CMailFile($subject,$to,$from,$msg,$filename,$downfilename,$mimetype = "application/octet-stream",$mime_filename = false) {  
    $this->subject = $subject;     
    $this->addr_to = $to;     
    $this->smtp_headers = $this->write_smtpheaders($from); 
    $this->text_body = $this->write_body($msg); 
    $this->text_encoded = $this->attach_file($filename,$downfilename,$mimetype,$mime_filename); 
    $this->mime_headers = $this->write_mimeheaders($filename, $mime_filename); 
  }  
  
  function attach_file($filename,$downfilename,$mimetype,$mime_filename) { 
    $encoded = $this->encode_file($filename); 
    if ($mime_filename) $filename = $mime_filename; 
    $out = "--" . $this->mime_boundary . "\n"; 
    $out = $out . "Content-type: " . $mimetype . "; name=\"$filename\";\n"; 
    $out = $out . "Content-Transfer-Encoding: base64\n"; 
    $out = $out . "Content-disposition: attachment; filename=

這是一個php的附件郵件類,需要的朋友可以下載使用

免責聲明

本站所有資源皆由網友貢獻或各大下載網站轉載。請自行檢查軟體的完整性!本站所有資源僅供學習參考。請不要將它們用於商業目的。否則,一切後果都由您負責!如有侵權,請聯絡我們刪除。聯絡方式:admin@php.cn

相關文章

如何在 iOS 18.2 中關閉郵件類別如何在 iOS 18.2 中關閉郵件類別

26Dec2024

Apple 今天發布了 iOS 18.2,它透過新的類別功能對郵件應用程式進行了重大更改。類別會自動將您的電子郵件分為四個不同的部分:主要、交易、更新和促銷。然而,雖然

存取類別中的資料庫物件時如何避免全域變數?存取類別中的資料庫物件時如何避免全域變數?

22Dec2024

在類別中使用全域變數建立分頁功能涉及從類別中存取資料庫物件。然而,...

React 中的函數元件與類別元件:選擇哪一個?React 中的函數元件與類別元件:選擇哪一個?

22Dec2024

React 中的函數元件與類別元件 React 讓開發人員透過兩種主要方式建立元件:功能元件和類別元件。雖然兩者都具有定義可重複使用 UI 片段的相同目的,但它們的語法不同

如何使用 PHP 輕鬆傳送電子郵件附件?如何使用 PHP 輕鬆傳送電子郵件附件?

23Dec2024

使用 PHP 的 mail() 函數傳送附件簡介:使用 PHP 的 mail() 函數傳送附件可能是一項艱鉅的任務。本文...

如何使用 PHP 輕鬆將文件附加到電子郵件?如何使用 PHP 輕鬆將文件附加到電子郵件?

23Dec2024

使用 PHP 的 Mail() 函數將文件附加到電子郵件 使用 PHP 的 mail() 函數傳送電子郵件附件可能是一項艱鉅的任務。雖然它是...

我可以使用 PHP 的 mail() 函數將文件附加到電子郵件嗎?我可以使用 PHP 的 mail() 函數將文件附加到電子郵件嗎?

02Jan2025

使用 PHP Mail() 函數為電子郵件新增附件您希望使用 PHP mail() 函數將 PDF 檔案附加到電子郵件,但您...

See all articles