PHP Package: laminas/laminas-mime

Laminas Mime is a powerful PHP library for handling MIME types and email messages efficiently. It provides robust functionality for parsing, creating, and manipulating MIME content.

Current Version: 2.12.0
Last Updated: 2023-11-02
PHP Requirement: >=7.1
Dependencies: laminas/laminas-escaper, laminas/laminas-validator
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Laminas Mime is a feature-rich PHP library designed to streamline the handling of MIME types and email messages. With comprehensive support for various MIME standards, this library simplifies tasks such as encoding, decoding, and composing email content. Whether you need to work with attachments, multipart messages, or custom MIME types, Laminas Mime offers a flexible and reliable solution.

🔗 View on GitHub

Download Latest Version: 2.12.0

Download Download v2.12.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/laminas/laminas-mime/2.12.0/autoload.php';

use Laminas\Mime\Mime;
use Laminas\Mime\Part;
use Laminas\Mime\Message;


$obj = new Laminas\Mime\Mime();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.