laravel 5.4 embed image in mail

前端 未结 6 1013
无人及你
无人及你 2020-12-17 10:21

I have just upgraded my 5.2 install of laravel to 5.3 and then to 5.4 following the official upgrading methods.

I am now tryin

6条回答
  •  天命终不由人
    2020-12-17 10:59

    You can also use this useful package

    https://github.com/eduardokum/laravel-mail-auto-embed

    Taken from the readme

    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://example.com/products/product-1.png)
    
    Thanks,
    {{ config('app.name') }} @endcomponent

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

    
    

    by an embedded inline attachment of the image:

    
    

提交回复
热议问题