eduardokum / laravel-mail-auto-embed by eduardokum

Library for embed images in emails automatically
1,131,351
157
3
Package Data
Maintainer Username: eduardokum
Maintainer Contact: eduguscontra3@hotmail.com (Eduardo Gusmão)
Package Create Date: 2017-03-17
Package Last Update: 2024-03-12
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:11:07
Package Statistics
Total Downloads: 1,131,351
Monthly Downloads: 31,206
Daily Downloads: 1,621
Total Stars: 157
Total Watchers: 3
Total Forks: 33
Total Open Issues: 0

Packagist Packagist Packagist GitHub forks

Laravel Mail Auto Embed

Install

You can install the package via composer:

$ composer require eduardokum/laravel-mail-auto-embed

This package uses Laravel 5.5 Package Auto-Discovery. For previous versions of Laravel, you need to add the following Service Provider:

$providers = [
    ...
    \Eduardokum\LaravelMailAutoEmbed\ServiceProvider::class,
    ...
 ];

Usage

Its use is very simple, you write your markdown normally:

@component('mail::message')
# Order Shipped

Your order has been shipped!

@component('mail::button', ['url' => $url])
View Order
@endcomponent

Purchased product:

![product](https://domain.com/products/product-1.png)

Thanks,<br>
{{ config('app.name') }}
@endcomponent

When sending, it will replace the link that would normally be generated:

<img src="https://domain.com/products/product-1.png">

by an embedded inline attachment of the image:

<img src="cid:3991f143cf1a86257f8671883736613c@Swift.generated">.

It also works for raw html too:

// eg: resources/vendor/mail/html/header.blade.php
<tr>
    <td class="header">
        <a href="{{ $url }}">
            <img src="https://domain.com/logo.png" class="img-header">
        </a>
    </td>
</tr>

If you do not want to use automatic embedding for specific images (because they are hosted elsewhere, if you want to use some kind of image tracker, etc.) simply add the attribute data-skip-embed in the image tag:

<img src="https://domain.com/logo.png" data-skip-embed class="img-header">

Local resources

For local resources that are not available publicly, use file:// urls, example

<img src="file://{{ resource_path('assets/img/logo.png') }}" alt="Logo" border="0"/>

Configuration

The defaults are set in config/mail-auto-embed.php. You can copy this file to your own config directory to modify the values using this command:

php artisan vendor:publish --provider="Eduardokum\LaravelMailAutoEmbed\ServiceProvider"

Explicit embedding configuration

By default, images are embedded automatically, unless you add the data-skip-embed attribute.

You can also disable auto-embedding globally by setting the MAIL_AUTO_EMBED environment variable to false. You can then enable embedding for specific images with the data-auto-embed attribute.

# .env
MAIL_AUTO_EMBED=false
<p>
    <!-- Won't be embedded -->
    <img src="https://domain.com/logo.png" class="img-header">
</p>
<p>
    <!-- Explicit embedding -->
    <img src="https://domain.com/item.png"  data-auto-embed>
</p>

Base64 embedding

If you prefer to use Base64 instead of inline attachments, you can do so by setting the MAIL_AUTO_EMBED_METHOD environment variable to base64.

Note that it will increase the e-mail size, and that it won't be decoded by some e-mail clients such as Gmail.

Mixed embedding methods

If you want to use both inline attachment and Base64 depending on the image, you can specify the embedding method as the data-auto-embed attribute value:

<p>
    <img src="https://domain.com/logo.png" data-auto-embed="base64">
</p>
<p>
    <img src="https://domain.com/item.png" data-auto-embed="attachment">
</p>

Embedding entities

You might want to embed images that don't actually exist in your filesystem (stored in the database).

In that case, make the entities you want to embed implement the EmbeddableEntity interface:

namespace App\Models;

use Eduardokum\LaravelMailAutoEmbed\Models\EmbeddableEntity;
use Illuminate\Database\Eloquent\Model;

class Picture extends Model implements EmbeddableEntity
{
    /**
     * @param  mixed  $id
     * @return Picture
     */
    public static function findEmbeddable($id)
    {
        return static::find($id);
    }

    /**
     * @return mixed
     */
    public function getRawContent()
    {
        return $this->data;
    }

    /**
     * @return string
     */
    public function getFileName()
    {
        return 'profile_'.$this->id.'.png';
    }

    /**
     * @return string
     */
    public function getMimeType()
    {
        return 'image/png';
    }
}

Then, you can use the embed:ClassName:id syntax in your e-mail template:

<p>
    <img src="embed:App\Models\Picture:123">
</p>

Contributing

Please feel free to submit pull requests if you can improve or add any features.

We are currently using PSR-2. This is easy to implement and check with the PHP Coding Standards Fixer.