Skip to content

Instantly share code, notes, and snippets.

@rskull
Created October 31, 2011 12:31
Show Gist options
  • Save rskull/1327391 to your computer and use it in GitHub Desktop.
Save rskull/1327391 to your computer and use it in GitHub Desktop.
天気が悪いときだけメールくれる。
<?php
//cronでまわす
mb_language('Japanese');
mb_internal_encoding('UTF-8');
//RSS取得 東京
$xml_file = 'http://rss.weather.yahoo.co.jp/rss/days/13.xml';
$xml = simplexml_load_file($xml_file);
$res = $xml -> channel -> item[0] -> title;
$to = '送信先アドレス';
$subject = '天気悪いらしいよー';
$mail = "送信元アドレス";
if (preg_match('/雨|雪|台風/', $res)) {
mb_send_mail($to, $subject, $res,
"From: $mail\r\n"
."Reply-To: $mail\r\n"
."X-Mailer: PHP/" . phpversion());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment