私はAmazonSESを初めて使用し、次のコードを使用してメールを送信しようとしています。
<?php
require_once 'aws/sdk.class.php';
$ses = new AmazonSES();
$to = array('ToAddress' => 'mario@wowfi.com');
$content = array('Subject.Data' => 'Tema', 'Body.Text.Data' => 'hello');
$r = $ses->send_email("mario@wowfi.com", $to , $content);
print_r($r);
?>
出力には、次のように表示されます。必要なヘッダー「To」がありません。何が間違っていますか?