yiisoft/mailer-view 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

yiisoft/mailer-view

Composer 安装命令:

composer require yiisoft/mailer-view

包简介

Yii Mailer message body rendering extension

关键字:

README 文档

README

Yii

Yii Mailer View


Latest Stable Version Total Downloads Build status Code Coverage Mutation testing badge static analysis type-coverage psalm-level

This Yii Mailer extension provides classes for composing message body via view rendering:

  • MessageBodyRenderer - a view renderer used to compose message body.
  • ViewMailer - a mailer decorator with compose() method.

Requirements

  • PHP 8.1 or higher.

Installation

The package could be installed with Composer:

composer require yiisoft/mailer-view

General usage

Message body renderer

use Yiisoft\Mailer\View\MessageBodyRenderer;
use Yiisoft\Mailer\View\MessageBodyTemplate;
use Yiisoft\View\View;

$renderer = new MessageBodyRenderer(
    new View(),
    new MessageBodyTemplate(
        __DIR__ . '/views',
        'html-layout',
    ),
);

// HTML body
$htmlBody = $renderer->renderHtml(
    view: 'html-content',
    viewParameters: ['count' => 42],
    layoutParameters: ['header' => 'Hello!'],
);

// Text body
$textBody = $renderer->renderText(
    view: 'html-content',
    viewParameters: ['count' => 42],
    layoutParameters: ['header' => 'Hello!'],
);

// Add body to message
$message = $renderer->addBodyToMessage(
    message: new Message(),
    htmlView: 'html-content',
    viewParameters: ['count' => 42],
    layoutParameters: ['header' => 'Hello!'],
);

If needed, you can pass textView parameter with the name of the text view.

Mailer decorator

/**
 * @var \Yiisoft\Mailer\MailerInterface $mailer
 * @var Yiisoft\Mailer\View\MessageBodyRenderer $messageBodyRenderer
 */
 
$viewMailer = new ViewMailer($mailer, $messageBodyRenderer);

// Create message
$message = $viewMailer->compose(
    htmlView: 'html-content',
    viewParameters: ['count' => 42],
    layoutParameters: ['header' => 'Hello!'],
);

// Send message
$viewMailer->send($message);

If needed, you can pass textView parameter with the name of the text view.

Documentation

If you need help or have a question, the Yii Forum is a good place for that. You may also check out other Yii Community Resources.

License

The Yii Mailer View is free software. It is released under the terms of the BSD License. Please see LICENSE for more information.

Maintained by Yii Software.

Support the project

Open Collective

Follow updates

Official website Twitter Telegram Facebook Slack

统计信息

  • 总下载量: 1
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 14
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2024-10-16