sitegeist/neos-symfonymailer 问题修复 & 功能扩展

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

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

sitegeist/neos-symfonymailer

Composer 安装命令:

composer require sitegeist/neos-symfonymailer

包简介

A connector to use the symfony mailer component in Neos.Fusion.Form Actions and via PHP

README 文档

README

Use the Symfony Mailer Component from Neos CMS, especially together with Neos.Fusion.Form but it can also be used directly via PHP.

Authors & Sponsors

The development and the public releases of this package is generously sponsored by our employer http://www.sitegeist.de.

Installation

Sitegeist.Neos.SymfonyMailer is available via packagist composer require sitegeist/neos-symfonymailer. We use semantic-versioning, so every breaking change will increase the major version number.

Neos.Fusion.Form Action Sitegeist.Neos.SymfonyMailer:SendMailAction

The Sitegeist.Neos.SymfonyMailer:SendMailAction allows to specify an email that will be sent after the runtime form was successfully submitted.

Options:

  • senderAddress: (string|array)
  • senderName: (string)
  • recipientAddress: (string|array)
  • recipientName: (string)
  • replyToAddress: (string|array)
  • carbonCopyAddress: (string|array)
  • blindCarbonCopyAddress: (string|array)
  • subject: (string) The email subject
  • text: (string) The plaintext content
  • html: (string) The html content (if text and html are defined a multipart email is created)
  • attachments.[key]: (string) The string is treated as a path where the attachment is read from.
  • attachments.[key]: (UploadedFileInterface|FlowResource) The uploaded file or resource is added to the mail
  • attachments.[key]: (array{name:string, content:string}) Create a file on the fly from name and content
  • attachments.[key]: (iterable) If iterables (Collections) are passed the files are attached recursively
  • testMode: (boolean) Show debug information instead of actually sending the email.
  • dsn: (string) Use the specified mailer dsn instead of the global setting

Example:

form = Neos.Fusion.Form:Runtime.RuntimeForm {
    # ... 
    actions {
        type = 'Sitegeist.Neos.SymfonyMailer:SendMail'
        options {
            senderAddress = ${q(node).property('mailFrom')}
            recipientAddress = ${q(node).property('mailTo')}

            subject = ${q(node).property('mailSubject')}
            text = afx`Thank you {data.firstName} {data.lastName} from {data.city}, {data.street}`
            html = afx`<h1>Thank you {data.firstName} {data.lastName}</h1><p>from {data.city}, {data.street}</p>`

            attachments {
                upload = ${data.file}
                resource = "resource://Form.Test/Private/Fusion/Test.translation.csv"
                jsonFile {
                    content = ${Json.stringify(data)}
                    name = 'data.json'
                }
            }
        }
    }
}

Configuration

The package allows to configure the dsn used by the mailer globally via settings. You can use the dsn specification as it is documented by symfony here: https://symfony.com/doc/current/mailer.html#transport-setup

Sitegeist:
  Neos:
    SymfonyMailer:
      dsn: 'sendmail://default'

Usage via PHP

The package is built upon the package Sitegeist.Neos.SymfonyMailer.Factories which can be used directly from php. See https://github.com/sitegeist/Sitegeist.Neos.SymfonyMailer.Factories how this is done.

Contribution

We will gladly accept contributions. Please send us pull requests.

License

See LICENSE

sitegeist/neos-symfonymailer 适用场景与选型建议

sitegeist/neos-symfonymailer 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 26.6k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2023 年 02 月 22 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 sitegeist/neos-symfonymailer 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 sitegeist/neos-symfonymailer 我们能提供哪些服务?
定制开发 / 二次开发

基于 sitegeist/neos-symfonymailer 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-3.0
  • 更新时间: 2023-02-22