thedavidinyang/phpsimplemail 问题修复 & 功能扩展

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

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

thedavidinyang/phpsimplemail

最新稳定版本:2

Composer 安装命令:

composer require thedavidinyang/phpsimplemail

包简介

A full-featured simple php fluent interface for sending html or plaintext emails via smtp

README 文档

README

A full-featured simple php fluent interface for sending html or plaintext emails via smtp or sendgrid

<?php
$e = new Mailer;

$setup = ['host' => '', 'username'=>'', 'password'=>'', 'authentication'=>'', 'port'=>''  ];

$e->init('smtp')
->setup($setup)
->subject('Welcome')
->to(['name' => 'David Inyang', 'email'=>'samplemail@gmail.com'])
->from(['name' => 'David Inyang', 'email'=>'samplemail@gmail.com'])
->body('Hi, welcome to the team')
->sendmail();

This is a simple mail interface that makes sending smtp emails extremely easy.

You can send plaintext or html email, and also include attatchements easily from a fluent interface.

It provides all the basic pieces need to craft almost any kind of email.

SMTP Configuration

  • host = smtp host url
  • username = smtp username
  • password = smtp password
  • authentication = SSL or TLS
  • port = smtp port

Sendgrid Configuration

  • apiKey = your sendgrid api key

Easy Installation

Install with composer

To install with Composer, simply require the latest version of this package.

composer require thedavidinyang/phpsimplemail

Make sure that the autoload file from Composer is loaded.

// somewhere early in your project's loading, require the Composer autoloader
// see: http://getcomposer.org/doc/00-intro.md
require 'vendor/autoload.php';

Download and install

Download a packaged archive and extract it into the directory where the package will reside

Quick Start

Just pass your email configuration into PHPSimplemail:

// reference the SimpleMail namespace
use thedavidinyang\SimpleMail\Mailer;

// Setup SMTP Configurations
$setup = ['host' => '', 'username'=>'', 'password'=>'', 'authentication'=>'', 'port'=>''  ];

// initialize and use the SimpleMail class
$e = new Mailer;

$e->init('smtp')
->setup($setup)

// Set mail parameters

// Subject
->subject('Welcome')

// Recipient
->to(['name' => 'David Inyang', 'email'=>'samplemail@gmail.com'])

// Sender
->from(['name' => 'David Inyang', 'email'=>'samplemail@gmail.com'])

// Content
->body('Hi, welcome to the team')



// Send mail
->sendmail();

SendGrid Integration

Just pass your sendgrid API key into PHPSimplemail:

// reference the SimpleMail namespace
use thedavidinyang\SimpleMail\Mailer;

// Setup SMTP Configurations
$setup = ['apiKey' => '' ];

// initialize and use the SimpleMail class
$e = new Mailer;

$e->init('sendgrid')
->setup($setup)

// Set mail parameters

// Subject
->subject('Welcome')

// Recipient
->to(['name' => 'David Inyang', 'email'=>'samplemail@gmail.com'])

// Sender
->from(['name' => 'David Inyang', 'email'=>'samplemail@gmail.com'])

// Content
->body('Hi, welcome to the team')



// Send mail
->sendmail();

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-01-10