2

以下のコードを使用して、SMTPまたはSwiftmailerなしでSendgridWebAPIを使用したいと思います。長い文字列変数を作成せず、すべての引用符をエスケープして各変数をエコーする必要なしに、動的Webページ全体を'html' $ params配列に渡すことは可能ですか?各メールは大幅に異なるため、Sendgridのテンプレート/メールマージオプションは機能しません。ありがとう!

これは簡単なhtmlの例です(私のものははるかに動的なコンテンツを持っています):

<html>
  <head></head>
  <body>
    <p>Hi I'm <?php echo $name; ?>!<br>
       <span style="color: #999999; font-size: 11px;">How are you?</span><br>
    </p>
  </body>
</html>

$url = 'http://sendgrid.com/';
$user = 'USERNAME';
$pass = 'PASSWORD'; 

$params = array(
    'api_user'  => $user,
    'api_key'   => $pass,
    'to'        => 'example3@sendgrid.com',
    'subject'   => 'testing from curl',
    'html'      => 'testing body',
    'text'      => 'testing body',
    'from'      => 'example@sendgrid.com',
  );


$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);
4

2 に答える 2

1

必要なHTMLを生成する最良の方法は、Smartyのようなテンプレートエンジンを使用することです。したがって、あなたの例では、実際に電子メールを送信する上記のどこかで、次のようにします。

include('Smarty.class.php');

$smarty = new Smarty;
$smarty->assign('name', 'Swift');
$smarty->assign('name', 'SendGrid');
$smarty->assign('address', '123 Broadway');

// Store it in a variable
$emailBody = $smarty->fetch('some_dynamic_template.tpl');

そして、実際に新しいダイナミックHTML本文を使用して電子メールを送信する必要がある場合:

....

$params = array(
    'api_user'  => $user,
    'api_key'   => $pass,
    'to'        => 'example3@sendgrid.com',
    'subject'   => 'testing from curl',
    'html'      => $emailBody,
    'from'      => 'example@sendgrid.com',
);

....
于 2012-04-05T23:23:02.590 に答える
0

同じ場合、SMTP APIは、置換タグを使用することで簡単になります。詳細:http ://sendgrid.com/docs/API_Reference/SMTP_API/substitution_tags.html

于 2013-10-07T14:24:10.147 に答える