wulfheart / laravel-mailto

v0.1.0 2021-02-06 22:41 UTC

This package is auto-updated.

Last update: 2024-09-07 20:16:39 UTC


README

Latest Version on Packagist Total Downloads

Laravel-Mailto 允许您生成带有收件人、抄送和密送、主题和正文的 mailto 链接。如果用户点击该链接,它将打开默认的邮件编辑器,并自动填充数据。如果您想让用户能够从自己的客户端发送电子邮件,这将非常有用。

安装

您可以通过 composer 安装此包

composer require wulfheart/laravel-mailto

用法

// some blade file
<a href="{{ 
mailto("jeffrey@example.com")
->cc(["ryan@example.com", "taylor@example.com"])
->bcc("freek@example.com")
->subject("Laravel")
->body("Hello Jeffrey,\n\nthis is a message.\n\nBest,\nAlex") 
}}">
    Send mail 📧
</a>

结果

Result

贡献

欢迎您贡献。

致谢

许可协议

MIT 许可协议 (MIT)。请参阅 许可文件 获取更多信息。