我正试图从我的Wordpress应用程序中触发在Campaign Monitor中发送智能交易电子邮件
require_once( get_stylesheet_directory() . '/createsend-php-master/csrest_transactional_smartemail.php' );
# Authenticate with your API key
$auth = array('api_key' => 'apikey');
# The unique identifier for this smart email
$smart_email_id = 'emailid';
# Create a new mailer and define your message
$wrap = new CS_REST_Transactional_SmartEmail($smart_email_id, $auth);
$message = array(
"To" => 'email@email.com',
"Data" => array(
'x-apple-data-detectors' => 'x-apple-data-detectorsTestValue',
'href^="tel"' => 'href^="tel"TestValue',
'href^="sms"' => 'href^="sms"TestValue',
'owa' => 'owaTestValue',
),
);
# Send the message and save the response
$result = $wrap->send($message);
我已获得正确的API和电子邮件ID,并且我使用我的Gmail帐户进行测试,但电子邮件不会被触发。我是一名初学者,我认为我错过了一些完全明显的东西!
广告系列监控php文件的路径也是正确的。
API文档在这里https://www.campaignmonitor.com/api/transactional/?_ga=1.180877863.1694927084.1483423346 - 有什么我错过了。非常感谢帮助!