Skip to content

Commit

Permalink
スタメン登録されたさいのメールに投手の成績リンクも追加
Browse files Browse the repository at this point in the history
  • Loading branch information
tyoshii committed Oct 3, 2014
1 parent 378cdaa commit f0025ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fuel/app/classes/common/email.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ public static function regist_starter($game_id, $team_id, $player_id)
$url_path = Model_Team::find($team_id)->url_path;
$uri = Uri::base(false);

$body .= $uri.'team/'.$url_path.'/game/'.$game->id.'/edit/batter';
$body .= '野手成績:'.$uri.'team/'.$url_path.'/game/'.$game->id.'/edit/batter';
$body .= '投手成績:'.$uri.'team/'.$url_path.'/game/'.$game->id.'/edit/pitcher';

// sendmail
self::sendmail($to, $subject, $body);
Expand Down

0 comments on commit f0025ee

Please sign in to comment.