PHP Classes

File: src/stubs/cms/core/newsletter/resources/views/mail/newsletter.blade.php

Recommend this page to a friend!
  Classes of Shun Ram   Laravel Admin   src/stubs/cms/core/newsletter/resources/views/mail/newsletter.blade.php   Download  
File: src/stubs/cms/core/newsletter/resources/views/mail/newsletter.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Admin
Manage users and the site content they publish
Author: By
Last change:
Date: 1 year ago
Size: 687 bytes
 

Contents

Class file image Download
@component('layout::mail.master')
    @slot('style')
        <style>
        .subscription-div
        {
            font-size: 10px;
            border-top: 1px solid #c5c5c5;
        }
        </style>
    @endslot
    @slot('message')
        {!! $data !!}
        <div class="subscription-div">
        You have subscribed to <a href="{{url('/')}}"><b>{!! isset(Configurations::getConfig('site')->site_name) ? Configurations::getConfig('site')->site_name : '' !!}</b></a>
            If you don't want to receive our latest news,click <a href="{{url('/remove-subscriber?address='.md5($mail[0]['address']))}}">unsubscribe</a>
        </div>
    @endslot
@endcomponent