このサイトの管理人に連絡を取りたい場合は以下のコンタクトフォームを利用してください。
なお、管理人の都合によりお返事できない場合もありますのがご了承ください。
コンタクトフォームの入力欄はすべて入力必須となっております。
名前が入力されていません。’;
}
if (!$address) {
$message .= ‘
‘;
}
/*
} elseif (!ereg(“^[{$alnum}_\.\-]+@([{$alnum}_\-\.]+\.[{$alnum}]+$)”, $address, $regs)) {
$message .= ‘
‘;
} elseif (!getmxrr($regs[1], $mxhostarr)) {
$message .= ‘
‘;
*/
if (!$subject) {
$message .= ‘
‘;
}
if (!$body) {
$message .= ‘
‘;
}
if ($message) $message = ‘
- ‘ . $message . ‘
‘;
return $message;
}
function mail_send($name, $address, $subject, $body) {
/*
mb_internal_encoding(“utf-8”);
mb_language(“japanese”);
return @mb_send_mail(
‘tatsuki@nagayamas.jp’,
‘自宅サーバー Fedora’,
$_SERVER[“REMOTE_ADDR”] . ‘-‘ . $_SERVER[“HTTP_USER_AGENT”] . ‘)’ . “\n” .
‘名前 : ‘ . $name . “\n” .
‘メールアドレス : ‘ . $address . “\n” .
‘タイトル : ‘ . $subject . “\n” .
‘本文 : ‘ . $body,
‘From: ‘ . $address);
*/
}
if (($_SERVER[“REQUEST_METHOD”] == “POST”) && (strcmp($_POST[“mode”], ‘mail’) == 0)) {
$mail_message = mail_check_error($_POST[“c_name”], $_POST[“c_address”], $_POST[“c_subject”], $_POST[“c_body”]);
if (!$mail_message) {
if (!mail_send($_POST[“c_name”], $_POST[“c_address”], $_POST[“c_subject”], $_POST[“c_body”])) {
$mail_message = ‘
‘;
} else {
$mail_message = ‘
‘;
}
}
}
if ($mail_message) $output .= $mail_message;
$output .= ‘
‘;
print $output;
?>