ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-17 05:17:59
Editing: EmbeddedFile.php
Cancel
Save Changes
<?php /** * Swift Mailer Embedded File (like an image or a midi file) * Please read the LICENSE file * @copyright Chris Corbyn <chris@w3style.co.uk> * @author Chris Corbyn <chris@w3style.co.uk> * @package Swift_Message * @license GNU Lesser General Public License */ require_once dirname(__FILE__) . "/../ClassLoader.php"; Swift_ClassLoader::load("Swift_Message_Attachment"); /** * Embedded File component for Swift Mailer * @package Swift_Message * @author Chris Corbyn <chris@w3style.co.uk> */ class Swift_Message_EmbeddedFile extends Swift_Message_Attachment { /** * The content-id in the headers (used in <img src=...> values) * @var string */ var $cid = null; /** * Constructor * @param mixed The input source. Can be a file or a string * @param string The filename to use, optional * @param string The MIME type to use, optional * @param string The Content-ID to use, optional * @param string The encoding format to use, optional */ function Swift_Message_EmbeddedFile($data=null, $name=null, $type="application/octet-stream", $cid=null, $encoding="base64") { $this->Swift_Message_Attachment($data, $name, $type, $encoding, "inline"); if ($cid === null) { $cid = Swift_Message_Attachment::generateFileName("swift-" . uniqid(time()) . "."); $cid = urlencode($cid) . "@" . (!empty($_SERVER["SERVER_NAME"]) ? $_SERVER["SERVER_NAME"] : "swift"); } $this->setContentId($cid); if ($name === null && !is_a($data, "Swift_File")) $this->setFileName($cid); $this->headers->set("Content-Description", null); } /** * Get the level in the MIME hierarchy at which this section should appear. * @return string */ function getLevel() { return SWIFT_MIME_LEVEL_RELATED; } /** * Set the Content-Id to use * @param string The content-id */ function setContentId($id) { $id = (string) $id; $this->cid = $id; $this->headers->set("Content-ID", "<" . $id . ">"); } /** * Get the content-id of this file * @return string */ function getContentId() { return $this->cid; } }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete