本文整理汇总了PHP中SendGrid::postRequest方法的典型用法代码示例。如果您正苦于以下问题:PHP SendGrid::postRequest方法的具体用法?PHP SendGrid::postRequest怎么用?PHP SendGrid::postRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SendGrid
的用法示例。
在下文中一共展示了SendGrid::postRequest方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
/**
* Override Email send
*
* @param SendGrid\Email $email Email object with email info
* @param SendGrid $sendgrid Sendgrid object with credentials info
* @return array Array of results
*/
function wp_send(SendGrid\Email $email, $sendgrid)
{
$form = $email->toWebFormat();
$form['api_user'] = Sendgrid_Tools::get_username();
$form['api_key'] = Sendgrid_Tools::get_password();
$url = $sendgrid->url . $sendgrid->endpoint;
$files = preg_grep('/files/', array_keys($form));
if (count($files) > 0) {
if (in_array('curl', get_loaded_extensions())) {
$response = $sendgrid->postRequest($sendgrid->endpoint, $form);
$response = array('body' => $response->raw_body);
} else {
update_option('sendgrid_curl_option', 'disabled');
foreach ($files as $key => $value) {
unset($form[$value]);
}
$data = array('body' => $form);
$response = wp_remote_post($url, $data);
}
} else {
$data = array('body' => $form);
$response = wp_remote_post($url, $data);
}
return $response;
}