contact us

本サイトに関するご意見・ご感想や、広告に関するお問い合わせは以下のフォームより送信ください。

If you would like to make general inquiries about content, advertising or our site, please use the following form.

 

isMail($mail)) { $err[] = "■Mail : Mail address format error."; } $sex = trim($_POST["Sex"]); // if ($sex == "") { // $err[] = "■Sex : Please select field."; // } $country = trim($_POST["Country"]); if ($country == "") { $err[] = "■Country : Please select field."; } $comment = trim($_POST["Comment"]); if ($comment == "") { $err[] = "■Comment : Please input field."; } if (count($err) > 0) { $contents .= "

"; for($i = 0 ; $i < count($err) ; $i++) { $contents .= $err[$i]."
"; } $contents .= "
\n"; $contents .= "

\n"; $display_form = true; } else { $tmpl_fname = "./tmpl/mail.tmpl"; $tmpl = new ControlFile($tmpl_fname); $mailbody = $tmpl->read(); $mailbody = str_replace("", $name , $mailbody); $mailbody = str_replace("", $mail , $mailbody); $mailbody = str_replace("", $sex , $mailbody); $mailbody = str_replace("", $country, $mailbody); $mailbody = str_replace("", $comment, $mailbody); $mailbody = mb_convert_encoding($mailbody, "JIS", "UTF-8"); $To = "kurita-makoto@msj.biglobe.ne.jp"; $From = $mail; $Subject = "お問い合わせメールです"; $Subject = mb_convert_encoding($Subject, "JIS", "UTF-8"); $Subject = mb_encode_mimeheader($Subject, "JIS"); mail($To, $Subject, $mailbody, "From: ".$From."\nContent-Type: text/plain; charset=ISO-2022-JP\nContent-Transfer-Encoding: 7bit"); $contents .= "

Thank you your contact.

"; $display_form = false; } } else { $display_form = true; } } else { $display_form = true; } if ($display_form) { $contents .= "\n"; // name. $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; // mail. $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; // country. $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; // sex. $contents .= "\n"; $s = ""; if (!strcasecmp($sex, "Male")) { $s = " checked"; } $contents .= "\n"; $contents .= "\n"; // comment field. $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; // buttons $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "\n"; $contents .= "

■Name.(First name/Family name) お名前

■Mail Address. メールアドレス

■Country. お住まいの国・地域

\n
 Male 男性  "; $s = ""; if (!strcasecmp($sex, "Female")) { $s = " checked"; } $contents .= "Female 女性

■Comment here. コメント記入欄

 
  
 
 
\n"; } echo $contents; ?>