Antを介してYammerに通知を送信したいのですが、通知が送信されません。
私はこのリンクを参照しています。
<target name="notify_yammer">
<mail mailhost="${mail_host_name}" mailport="25" user="${mail_host_user}" password="${mail_host_password}" subject="Test build completion notification" charset="utf-8">
<from address="${mail_from_address}" />
<to address="${mail_to_address}" />
<message>Build successfully deployed on server!</message>
</mail>
</target>
上記のタスクnotify_yammer
を実行した後、次の出力が得られました。
Buildfile: /home/Repository/myProject/build.xml
notify_yammer:
[mail] Sending email: Test build completion notification
[mail] Sent email with 0 attachments
**BUILD SUCCESSFUL**
Total time: 5 seconds
しかし、Yammerに関する通知はありませんでした。
通知設定に必要な変更はありますか?または、何が問題なのか教えてもらえますか?