欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP调用Mailgun发送邮件的方法

程序员文章站 2024-03-12 21:23:51
总结php 调用mailgun发送邮件的方法,供大家参考,具体内容如下 本篇博客参考mailgun 官方api github链接: 1.mailgun是依赖compos...

总结php 调用mailgun发送邮件的方法,供大家参考,具体内容如下

本篇博客参考mailgun 官方api github链接:

1.mailgun是依赖composer工具,因此在使用之前需要先确认已经安装了composer.如何安装composer,非常简单,下面方法展示如何安装composer工具:

curl -ss https://getcomposer.org/installer | php

2.mailgun api的客户端没有硬连接到guzzle或任何其他发送http消息的库,它使用一个称为httplug的抽象,可以灵活的选择psr-7或者http客户端.如果你只是想快速开始,你应该运行以下命令:

php composer.phar require mailgun/mailgun-php php-http/curl-client guzzlehttp/psr7

3.ok,以上工作完成只有,你就可以使用mailgun进行email的发送啦~,使用方法参考官方教程,下面是一个例子:

require 'vendor/autoload.php';
use mailgun\mailgun;
# first, instantiate the sdk with your api credentials and define your domain. 
$mg = new mailgun("key-example");
$domain = "example.com";

# now, compose and send your message.
$mg->sendmessage($domain, array('from' => 'bob@example.com', 
        'to'  => 'sally@example.com', 
        'subject' => 'the php sdk is awesome!', 
        'text' => 'it is so simple to send a message.'));


4.备注:

当然也可以发送html形式的邮件,只需要将上面例子中的 'text'=>$text 改写成 'html'=>$html即可,同样如果想要cc或者bcc等功能,方法于php相同,只需要在上面的array里增加'cc'=>'jack@example.com','bcc'=>'jenny@example.com',即可.

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。