私はAzureでホストされているサイトから電子メールをユーザーに送信するためにPHPスクリプトを作成しています。 SendGridを使用しています。Microsoftでsendgrid PHPを使用するAzure
$url = 'https://api.sendgrid.com/';
$user = 'username';
$pass = 'password';
$params = array(
'api_user' => $user,
'api_key' => $pass,
'to' => $email,
'subject' => "Bid Submission",
'html' => "",
'text' => "y",
'from' => $emailFrom,
);
$request = $url.'api/mail.send.json';
// Generate curl request
$session = curl_init($request);
// Tell curl to use HTTP POST
curl_setopt ($session, CURLOPT_POST, true);
// Tell curl that this is the body of the POST
curl_setopt ($session, CURLOPT_POSTFIELDS, $params);
// Tell curl not to return headers, but do return the response
curl_setopt($session, CURLOPT_HEADER, false);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
// obtain response
$response = curl_exec($session);
curl_close($session);
// print everything out
print_r($response);
ただし、上記のコードは実行されず、電子メールは送信されません。私は既にSendGridアカウントをセットアップしています。提供されたユーザー名と私のパスワードが使用されています。誰かが私に間違っていることを教えてもらえますか?
こんにちは、更新はありますか? –