当前位置: 首页 > 软件库 > Web应用开发 > Web框架 >

laravel-mail-editor

MailEclipse ⚡ Laravel Mailable Editor!
授权协议 View license
开发语言 PHP
所属分类 Web应用开发、 Web框架
软件类型 开源软件
地区 不详
投 递 者 仇和蔼
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Laravel Mail Editor (Aka MailEclipse)



MailEclipse is a mailable editor package for your Laravel applications to create and manage mailables using a web UI. You can use this package to develop mailables without using the command line, and edit templates associated with mailables using a WYSIWYG editor, among other features.

WORK IN PROGRESS

Please note that this package is still under active development. We encourage everyone to try it and give feedback.

Features

  • Create mailables without using command line.
  • Preview/Edit all your mailables at a single place.
  • Templates (more than 20+ ready to use email templates).
  • WYSIWYG Email HTML/Markdown editor.
  • Suitable for laravel beginners.
  • Send Test mails
  • Testing mails with fake data
  • and many more... (promise).

Requirements

  • Laravel 8.

For Laravel 5.6 to 7 support please see version v2.2 branch

Installation

Via Composer

$ composer require qoraiche/laravel-mail-editor

The package will automatically register itself.

Publish configuration file and public assets:

php artisan laravel-mail-editor:install

Documentation

!!NOTE!! Maileclipse website is currently down, please check this youtube video (from author) for usage:

https://www.youtube.com/watch?v=QFgEGNBY3FI&t=135s

Documentation for Maileclipse can be found on the Official website.

Community

You can reach us at:

Change log

Please see the changelog for more information on what has changed recently.

Security

If you discover any security related issues, please email author email qoraicheofficiel@hotmail.com instead of using the issue tracker.

License

MIT license. Please see the license file for more information.

Screenshots

maileclipse-new-mailable

maileclipse-templates

maileclipse-templates-create

TODO

Contributions are welcome

  • Frontend enhancement (jquery to vue.js).
  • Add more email templates (HTML/Markdown).
  • Expand documentation pages.

Credits

Donate ❤️

If you benefit from and/or like using MailEclipse then please help drive the future development of the project by

Donors list:

  1. conschneider.de - (20,00 $) - Thank You! - 3 November 2020
  2. Emprovise - (20,00 $) - You did a great job on MailEclipse! Thank you for providing this to everyone for free. I look forward to watching your project grow! Thanks Again, James S. - 19 December 2019
  3. Idearia Web Agency - (40,00 €) - Keep up the good work! - 19 June 2019
  4. Snapt Systems Ltd - (100,00 $ USD) - Being used by one of our teams at Snapt! - 11 April 2019
  5. Corr Ex - (2,00 $ USD) - 28 March 2019
  6. WebArt Design - (10,00 $ USD) - Donation made with love by BuiltByPanda. com from Australia who support developers and their excellent work - 28 March 2019
  7. Flavius Borlovan (6,99 $ USD) - #teamcookie says HELLOO ���� Thanks for this really helpful Package (MailEclipse) bro. ������ - 12 March 2019
  8. Maik Kasper - (6,99 $ USD) - We {teamcookie:github. com/flavius-constantin} �� love to support good developers and their awesome work! ���� - 13 March 2019

Sponsors

  • Laravel SendCloud 发送邮件 composer 安装 composer require naux/sendcloud 修改 config/app.php,添加服务提供者 'providers' => [ // 添加这行 Naux\Mail\SendCloudServiceProvider::class, ]; 在 .env 中配置你的密钥, 并修改邮件驱动为 sendc

  • [PDOException] SQLSTATE[28000] [1045] Access denied for user ‘homestead’@’localhost’ (using password: YES) looks like same error different is not showing any file line number. The reason of Access den

  • 一、laravel的安装   1、composer     作用:主要管理php中的依赖关系(类似于yum源)     可以安装的软件:           curl       //主要用到微信开发中           upload    //文本操作           excel    //表格           mail     //邮件           log      //日志

 相关资料
  • A mail driver to quickly preview mail This package can display a small overlay whenever a mail is sent. The overlay contains a link to the mail that was just sent. This can be handy when testing out e

  • 基于Web的应用程序通常需要具有向用户/客户端发送邮件的功能。 Flask-Mail扩展使得与任何电子邮件服务器建立简单的界面变得非常容易。 首先,应该在pip实用程序的帮助下安装Flask-Mail扩展。 pip install Flask-Mail 然后需要通过设置以下应用程序参数的值来配置Flask-Mail。 Sr.No 参数和描述 1 MAIL_SERVER 电子邮件服务器的名称/ I

  • import "net/mail" mail包实现了邮件的解析。 本包大部分都遵守RFC 5322规定的语法,值得注意的区别是: * 旧格式地址和嵌入远端信息的地址不会被解析 * 组地址不会被解析 * 不支持全部的间隔符(CFWS语法元素),如分属两行的地址 Variables type Address func ParseAddress(address string) (*Address, er

  • Mail::send('email.view', $data, function($message){}); Mail::send(array('html.view', 'text.view'), $data, $callback); Mail::queue('email.view', $data, function($message){}); Mail::queueOn('queue-name'

  • 我试图在视图中显示我的降价电子邮件,但是我的邮件视图有问题,它显示为 还有我的降价邮件视图 我的视图上也有供应商,他们有自己的组件。

  • 问题内容: 我想使用laravel发送确认电子邮件。laravel Mail :: send()函数似乎只接受系统上文件的路径。问题是我的邮件模板存储在数据库中,而不存储在系统上的文件中。 如何将纯内容传递给电子邮件? 例: 问题答案: 更新:在 Laravel 5中, 您可以使用: 这是您的操作方式: