gpt4 book ai didi

php - 如何通过Mailgun发送邮件模板?

转载 作者:搜寻专家 更新时间:2023-10-31 21:09:11 27 4
gpt4 key购买 nike

我使用 Mailgun 作为我的电子邮件服务提供商,用于向我的同事发送电子邮件。我创建了一些有吸引力的电子邮件模板。但是,我不知道如何通过 Mailgun 发送它。请指导我...

最佳答案

如果您使用来自 mailgun 的 PHP 库,这很容易做到,可在此处获取:https://github.com/mailgun/mailgun-php

以下代码将向您的同事发送电子邮件,您可以根据需要添加任意多个字段!然后简单地编辑数组“html”:)并执行脚本!

# Include the Autoloader (see "Libraries" for install instructions)
require 'vendor/autoload.php';
use Mailgun\Mailgun;

# Instantiate the client.
$mgClient = new Mailgun('key-3ax6xnjp29jd6fds4gc373sgvjxteol0l');
$domain = "YOURDomain.mailgun.org";

# Make the call to the client.
$result = $mgClient->sendMessage($domain, array(
'from' => 'You@yourdomain.com',
'to' => 'your_colleague@someone.com',
'subject' => 'Hello',
'html' => 'some html code <b> goes here </b> and works <span style=\"color:red\">fine</span>'
));

关于php - 如何通过Mailgun发送邮件模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25268478/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com