public ActionResult FormToiawase(ecoClubToiawase info) { if (Request.HttpMethod == "GET") { // HTTP GET経由で呼び出された場合の処理 } else { // HTTP POST経由で呼び出された場合の処理 } return(View(info)); }
public ActionResult ConfirmToiawase(ecoClubToiawase info) { if (Request.HttpMethod == "GET") { // HTTP GET経由で呼び出された場合の処理 } else { // HTTP POST経由で呼び出された場合の処理 //うめ校宛------------------------------------------ System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage(); //送信者 msg.From = new System.Net.Mail.MailAddress("*****@*****.**", "うめ校HPのシステムより"); //宛先 msg.To.Add(new System.Net.Mail.MailAddress("*****@*****.**", "うめ校様")); //件名 msg.Subject = "■■おうめこどもエコクラブへの問い合わせ"; //本文 msg.Body += "▼以下の情報でおうめこどもエコクラブへ問い合わせがありました"; msg.Body += "氏名:" + info.toiawase_name + "\r\n\r\n"; msg.Body += "電話番号:" + info.toiawase_tel + "\r\n\r\n"; msg.Body += "メールアドレス:" + info.toiawase_email + "\r\n\r\n"; msg.Body += "問い合わせ内容:" + "\r\n\r\n"; msg.Body += "" + info.toiawase_txt + "\r\n\r\n"; System.Net.Mail.SmtpClient sc = new System.Net.Mail.SmtpClient(); sc.Host = "mail.umekou.expressweb.jp"; sc.Credentials = new System.Net.NetworkCredential("*****@*****.**", "Umekoudane@1"); sc.EnableSsl = false; sc.Timeout = 100000; sc.Send(msg); msg.Dispose(); //申込者宛------------------------------------------ System.Net.Mail.MailMessage msg_toClient = new System.Net.Mail.MailMessage(); //送信者 msg_toClient.From = new System.Net.Mail.MailAddress("*****@*****.**", "うめ校HPのシステムより"); //宛先 msg_toClient.To.Add(new System.Net.Mail.MailAddress(info.toiawase_email, info.toiawase_name + "様")); //件名 msg_toClient.Subject = "■■おうめこどもエコクラブへのお問い合わせを受け付けました"; //本文 msg_toClient.Body += "▼以下の情報でおうめこどもエコクラブへのお問い合わせを受け付けました。" + "\r\n"; msg_toClient.Body += "後ほどスタッフから返信させて頂きます。" + "\r\n"; msg_toClient.Body += "※[email protected]からのメールが受信できるようお願いいたします。" + "\r\n\r\n"; msg_toClient.Body += "氏名:" + info.toiawase_name + "\r\n\r\n"; msg_toClient.Body += "電話番号:" + info.toiawase_tel + "\r\n\r\n"; msg_toClient.Body += "メールアドレス:" + info.toiawase_email + "\r\n\r\n"; msg_toClient.Body += "問い合わせ内容:" + "\r\n\r\n"; msg_toClient.Body += "" + info.toiawase_txt + "\r\n\r\n"; System.Net.Mail.SmtpClient sc_toClient = new System.Net.Mail.SmtpClient(); sc_toClient.Host = "mail.umekou.expressweb.jp"; sc_toClient.Credentials = new System.Net.NetworkCredential("*****@*****.**", "Umekoudane@1"); sc_toClient.EnableSsl = false; sc_toClient.Timeout = 100000; sc_toClient.Send(msg_toClient); msg_toClient.Dispose(); } return(View()); }