-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
287 lines (234 loc) · 9.22 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<?php
session_start();
//PHPMailerの呼び出し
require_once('./php/PHPMailerAutoload.php');
require_once('/usr/local/apache2/conf/account.php');
$mailer = new PHPMailer();
$send_result = false;
//トークンの発行
if($_SERVER['REQUEST_METHOD'] === "POST") {
if(!isset($_POST['token']) || $_POST['token'] !== getToken()){
exit('処理を正常に完了できませんでした');
}
//各変数に値を入れる
$name = $_POST['name'];
$mail = $_POST['mail'];
$tel = $_POST['tel'];
$sub = $_POST['sub'];
$message = $_POST['message'];
$error = array();
//入力がない場合の処理
if (empty($name)){
$error['name'] = '名前は必ず入力してください';
}
if (empty($message)){
$error['message'] = 'メッセージは必ず入力してください';
}
if (empty($mail)){
$error['mail'] = 'メールアドレスは必ず入力してください';
}
if (empty($tel)){
$error['tel'] = '電話番号は必ず入力してください';
}
if (empty($sub)){
$error['sub'] = '件名は必ず入力してください';
}
//バリデーションチェック
if(!filter_var($mail,FILTER_VALIDATE_EMAIL)) {
$error['mail'] = 'メールアドレスの形式が正しくありません。';
}
//エラーがない場合の処理
if (empty($error)) {
//メール送信処理
$to = $mail;
$subject = "お問い合わせ頂きありがとうございます | 元気が出るデイサービスセンター";
$body = "
$name 様
元気が出るデイサービスセンターです。
この度はお問い合わせ頂きありがとうございました。
お問い合わせ頂きました内容は以下のとおりです。
-------------------------------------
お名前:$name
メールアドレス:$mail
件名:$sub
内容:
$message
-------------------------------------
元気が出るデイサービスセンターより、後ほど連絡いたしますので、
今しばらくお待ちいだきますよう、よろしくお願い致します。
━━━━━━━━━━━━━━
株式会社エイチエムサポート
元気が出るデイサービスセンター
Tel : 0197-25-2940
Web : mskserverdti.dip.jp
━━━━━━━━━━━━━━";
$fromname = "元気が出るデイサービスセンター";
$from = "[email protected]";
$smtp_user = $account['user'];
$smtp_password = $account['password'];
$bcc = "[email protected]";
mb_language('Japanese');
mb_internal_encoding('UTF-8');
//PHPMailerオブジェクトの生成
$mailer->IsSMTP();
//$mailer->SMTPDebug = 1;
$mailer->SMTPAuth = true;
$mailer->CharSet = 'utf-8';
$mailer->SMTPSecure = 'ssl';
$mailer->Host = "smtp.gmail.com";
$mailer->Port = 465;
$mailer->IsHTML(false);
$mailer->Username = $smtp_user;
$mailer->Password = $smtp_password;
$mailer->SetFrom($smtp_user);
$mailer->From = $from;
$mailer->Subject = $subject;
$mailer->Body = $body;
$mailer->AddAddress($to);
$mailer->addBcc(bcc);
$send_result = $mailer->Send();
if($send_result) {
//送信完了後、値をクリア
$message ="";
$mail="";
$name="";
$tel="";
$sub="";
}
}
}
//特殊文字の処理
function h($str) {
return htmlspecialchars($str,ENT_QUOTES,'UTF-8');
}
//セッショントークンの生成
function getToken() {
return hash('sha256', session_id());
}
?>
<!DOCTYPE html>
<html lang=ja>
<head>
<meta charset="utf-8">
<title>元気が出るデイサービスセンター</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="岩手県奥州市にある小規模デイサービスセンター元気が出るデイサービスセンターのホームページです。">
<meta name="keywords" content="介護,元気が出るデイサービス,元気がでる,奥州市">
<meta property="og:title" content="元気が出るデイサービスセンター : 岩手県奥州市にあるデイサービス施設" />
<meta property="og:url" content="http://mskserverdti.dip.jp" />
<meta property="og:site_name" content="元気が出るデイサービスセンター : ホームページ" />
<meta property="fb:admins" content="" />
<meta property="og:description" content="岩手県奥州市にある小規模デイサービスセンター元気が出るデイサービスセンターのホームページです。" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:domain" content="" />
<meta name="twitter:description" content="岩手県奥州市にある小規模デイサービスセンター元気が出るデイサービスセンターのホームページです。" />
<meta name="twitter:title" content="元気が出るデイサービスセンター : 岩手県奥州市にあるデイサービス施設" />
<link rel="stylesheet" type="text/css" href="//yui.yahooapis.com/3.18.1/build/cssreset/cssreset-min.css" />
<link rel="stylesheet" type="text/css" href="./css/normalize.css" />
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="./css/contact.css" />
</head>
<body>
<header>
<div class="title">
<div class="site">
<h1><a href="./index.html"> 元気が出るデイサービスセンター</a></h1>
</div>
</div>
<div class="box2">
<button type="button" id="menubtn">
<i class="fa fa-bars"></i><span>MENU</span>
</button>
<nav class="menu" id="menu">
<ul>
<li><a href="./index.html">トップ</a></li>
<li><a href="./overview.html">概要</a></li>
<li><a href="">お問い合わせ</a></li>
</ul>
</nav>
</div>
</header>
<div class="page-title">
<h2>お問い合わせ</h2>
</div>
<form class="form" method="post" action="">
<input type="hidden" name="token" value="<?php echo getToken(); ?>"/>
<div class="fo-style">
<h3 style="color:#388E3C;" class="error"><?php if($send_result == True) { echo "送信完了しました!"; } ?></h3>
<p style="color:tomato;" class="error"><?php if (isset($error['name'])) echo h($error['name']); ?></p>
<span class="budge">必須</span>
<p>お名前</p>
<input class="fo-name" type="text" name="name" size="50" maxlength="20" placeholder="お名前" value="<?php if (isset($name)) echo h($name); ?>" />
</div>
<div class="fo-style">
<p style="color:tomato;" class="error"><?php if (isset($error['mail'])) echo h($error['mail']); ?></p>
<span class="budge">必須</span>
<p>メールアドレス</p>
<input class="fo-mail" type="text" name="mail" size="50" maxlength="256" placeholder="メールアドレス" value="<?php if (isset($email)) echo h($email); ?>" />
</div>
<div class="fo-style">
<p style="color:tomato;" class="error"><?php if (isset($error['tel'])) echo h($error['tel']); ?></p>
<span class="budge">必須</span>
<p>電話番号</p>
<input class="fo-tel" type="text" name="tel" size="50" maxlength="11" placeholder="電話番号" value="<?php if (isset($tel)) echo h($tel); ?>" />
</div>
<div class="fo-style">
<p style="color:tomato;" class="error"><?php if (isset($error['sub'])) echo h($error['sub']); ?></p>
<span class="budge">必須</span>
<p>件名</p>
<input class="fo-sub" type="text" name="sub" size="50" maxlength="120" placeholder="件名" value="<?php if (isset($sub)) echo h($sub); ?>" />
</div>
<div class="fo-style">
<p style="color:tomato;" class="error"><?php if (isset($error['message'])) echo h($error['message']); ?></p>
<span class="budge">必須</span>
<p>お問い合わせ内容</p>
<textarea class="fo-main" rows="5" cols="50" name="message" placeholder="ここに記入してください" ><?php if(isset($message)) echo h($message); ?></textarea>
</div>
<div class="fo-button fo-style">
<button class="button" type="submit">送信</button>
</div>
</form>
<footer id="footer">
<div class="footer-wrap">
<div class="footer-left">
<h4>元気が出るデイサービスセンター</h4>
<p>岩手県奥州市水沢区横町131 渡部ビル 1F</p>
<p><a href="tel:0197252940"><i class="fa fa-phone"></i>:0197-25-2940</a></p>
</div>
<div class="footer-right">
<p></p>
<ul>
<li><a href="./index.html">▶ トップページ</a></li>
<li><a href="./overview.html">▶ 会社概要</a></li>
<li><a href="./contact.html">▶ お問い合わせ</a></li>
</ul>
<p></p>
<p>© 2016 元気が出るデイサービスセンター</p>
</div>
</div>
</footer>
<script src="//code.jquery.com/jquery-1.12.4.min.js"></script>
<!--[if lt IE 9] -->
<script src="//css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<script src="//code.jquery.com/jquery-1.11.3.js"></script>
<!-- [endif] -->
<!--[if gte IE 9] -->
<script src="//code.jquery.com/jquery-2.1.4.js"></script>
<!--[endif]-->
<script>
$(function(){
$("#menubtn").click(function(){
$("#menu").slideToggle();
});
});
</script>
<script type="text/javascript" src="./js/footerFixed.js"></script>
<!--[if lt IE 9]>
<script src="//css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<script src="//code.jquery.com/jquery-1.11.3.js"></script>
<![endif] ->
<!--[if gte IE 9] -->
<script src="//code.jquery.com/jquery-2.1.4.js"></script>
<!--[endif]-->
</body>
</html>