リビジョン 16e57cae
app/Controller/TopController.php | ||
---|---|---|
116 | 116 |
$Email->viewVars(array('name'=>$name,'comment'=>$comment)); |
117 | 117 |
$Email->from( MAIL_FROM ); |
118 | 118 |
$Email->to($mail); |
119 |
$Email->subject('[PICT CODE]問い合わせ');
|
|
119 |
$Email->subject('【PictCode】お問い合わせいただき、ありがとうございます。');
|
|
120 | 120 |
$Email->send(); |
121 | 121 |
} |
122 | 122 |
|
app/Controller/UsersController.php | ||
---|---|---|
94 | 94 |
DS . 'users' . // コントローラ |
95 | 95 |
DS . 'activate' . // アクション |
96 | 96 |
DS . $this->User->id . // ユーザID |
97 |
DS . $this->User->getActivationHash(); // ハッシュ値
|
|
97 |
DS . $this->User->activationHash(); // ハッシュ値
|
|
98 | 98 |
$url = Router::url( $url, true); // ドメイン(+サブディレクトリ)を付与 |
99 | 99 |
$comment = $url; |
100 | 100 |
|
101 | 101 |
$Email = new CakeEmail(); |
102 | 102 |
$Email->charset('ISO-2022-JP'); |
103 | 103 |
$Email->emailFormat('text'); |
104 |
$Email->template('user_register');
|
|
104 |
$Email->template('register_mail');
|
|
105 | 105 |
$Email->viewVars(array('name'=>$name,'comment'=>$comment)); |
106 | 106 |
$Email->from( MAIL_FROM ); //MAIL_FROM:Config/const.phpにて定義 |
107 | 107 |
$Email->to($mail); |
108 |
$Email->subject('[PICT CODE]問い合わせ');
|
|
108 |
$Email->subject('【PictCode】仮登録が完了しました。');
|
|
109 | 109 |
$Email->send(); |
110 | 110 |
} |
111 | 111 |
|
... | ... | |
117 | 117 |
public function activate( $user_id = null, $in_hash = null) { |
118 | 118 |
// UserモデルにIDをセット |
119 | 119 |
$this->User->id = $user_id; |
120 |
if ($this->User->exists() && $in_hash == $this->User->getActivationHash()) {
|
|
120 |
if ($this->User->exists() && $in_hash == $this->User->activationHash()) {
|
|
121 | 121 |
// 本登録に有効なURL |
122 | 122 |
// statusフィールドを1に更新 |
123 | 123 |
$this->User->saveField( 'status', 1); |
124 | 124 |
$this->Session->setFlash( 'Your account has been activated.'); |
125 |
|
|
126 |
$mail = $this->Session->read('register.User.email'); |
|
127 |
// exit; |
|
128 |
|
|
129 |
$Email = new CakeEmail(); |
|
130 |
$Email->charset('ISO-2022-JP'); |
|
131 |
$Email->emailFormat('text'); |
|
132 |
$Email->template('register_comp'); |
|
133 |
// $Email->viewVars(array('name'=>$name,'comment'=>$comment)); |
|
134 |
$Email->from( MAIL_FROM ); //MAIL_FROM:Config/const.phpにて定義 |
|
135 |
$Email->to($mail); |
|
136 |
$Email->subject('【PictCode】本登録が完了しました。'); |
|
137 |
$Email->send(); |
|
138 |
|
|
125 | 139 |
}else{ |
126 | 140 |
// 本登録に無効なURL |
127 | 141 |
$this->Session->setFlash( 'Invalid activation URL'); |
142 |
return $this->redirect(array('controller' => 'top', 'action' => 'index')); |
|
128 | 143 |
} |
129 | 144 |
} |
130 | 145 |
|
... | ... | |
198 | 213 |
* @return void |
199 | 214 |
*/ |
200 | 215 |
public function login() { |
201 |
<<<<<<< HEAD |
|
202 |
// if($this->Auth->user()){ |
|
203 |
// $this->redirect($this->Auth->redirectUrl()); |
|
204 |
// } |
|
205 |
======= |
|
206 |
//var_dump(Security::hash( "123", 'blowfish')); |
|
207 |
if($this->register->user()){ |
|
208 |
$this->redirect($this->Auth->redirectUrl()); |
|
216 |
if($this->Auth->user()){ |
|
217 |
// $this->redirect($this->Auth->redirectUrl()); |
|
218 |
$this->redirect('/users/login_top'); |
|
209 | 219 |
} |
210 |
>>>>>>> origin/develop |
|
211 | 220 |
if ($this->request->is('post')) { |
212 |
<<<<<<< HEAD |
|
213 |
if ($this->register->login()) { |
|
214 |
$this->redirect('/Users/login_top'); |
|
215 |
======= |
|
216 | 221 |
if ($this->Auth->login()) { |
217 | 222 |
// $options = array('conditions' => array('User.email' => $this->Auth->user('User.email'),'User.status' => 1)); |
218 | 223 |
// $this->request->data = $this->User->find('first', $options); |
... | ... | |
224 | 229 |
'key' => 'positive', |
225 | 230 |
)); |
226 | 231 |
} |
227 |
>>>>>>> 8fa10255c509b6b77d694b7366878172b605ee59 |
|
228 | 232 |
} else { |
229 | 233 |
$this->Flash->loginerror('ニックネームか パスワードにまちがいが あるよ!', array( |
230 | 234 |
'key' => 'positive', |
... | ... | |
240 | 244 |
* @return void |
241 | 245 |
*/ |
242 | 246 |
public function logout() { |
243 |
$this->redirect($this->register->logout());
|
|
247 |
$this->redirect($this->Auth->logout());
|
|
244 | 248 |
} |
245 | 249 |
|
246 | 250 |
|
... | ... | |
292 | 296 |
// メール送信 |
293 | 297 |
$this->set('register',$this->Session->read('register')); |
294 | 298 |
$mail = $this->Session->read('register.User.email'); |
295 |
$options = array('conditions' => array('User.email' => $mail)); |
|
299 |
$options = array('conditions' => array('User.email' => $mail, 'User.status' => 1));
|
|
296 | 300 |
$user = $this->User->find('first', $options); |
297 | 301 |
$name = $user['User']['login_id']; |
298 | 302 |
|
... | ... | |
301 | 305 |
DS . 'users' . // コントローラ |
302 | 306 |
DS . 'newpwd' . // アクション |
303 | 307 |
DS . $user['User']['id'] . // ユーザID |
304 |
DS . $this->User->getActivationHash(); // ハッシュ値 |
|
308 |
DS . $this->User->getActivationHash($user['User']['id']); // ハッシュ値
|
|
305 | 309 |
$url = Router::url( $url, true); // ドメイン(+サブディレクトリ)を付与 |
306 | 310 |
$comment = $url; |
307 | 311 |
$Email = new CakeEmail(); |
... | ... | |
311 | 315 |
$Email->viewVars(array('name'=>$name,'comment'=>$comment)); |
312 | 316 |
$Email->from( MAIL_FROM ); //MAIL_FROM:Config/const.phpにて定義 |
313 | 317 |
$Email->to($mail); |
314 |
$Email->subject('[PICT CODE]問い合わせ');
|
|
318 |
$Email->subject('【PictCode】パスワードの再発行を受け付けました。');
|
|
315 | 319 |
$Email->send(); |
316 | 320 |
} |
317 | 321 |
|
... | ... | |
327 | 331 |
|
328 | 332 |
// UserモデルにIDをセット |
329 | 333 |
$this->User->id = $user_id; |
330 |
if ($this->User->exists() && $in_hash == $this->User->getActivationHash()) { |
|
331 |
$this->Session->setFlash( '無効なURLです'); |
|
332 |
return $this->redirect(array('controller' => 'top', 'action' => 'index')); |
|
333 |
|
|
334 |
}else{ |
|
334 |
if ($this->User->exists() && $in_hash == $this->User->activationHash()) { |
|
335 |
//idとハッシュ値が正規の場合、パスワード変更画面を表示 |
|
335 | 336 |
if ($this->request->is(array('post', 'put'))) { |
336 | 337 |
|
337 | 338 |
$this->set('user', $this->request->data); |
338 | 339 |
if ($this->User->save($this->request->data)) { |
339 |
return $this->redirect(array('action' => 'reset_pwd_comp_mail')); |
|
340 |
return $this->redirect(array('action' => 'reset_pwd_comp_mail',$user_id));
|
|
340 | 341 |
} |
341 | 342 |
} else { |
342 | 343 |
$options = array('conditions' => array('User.id' => $user_id,'User.status' => 1)); |
343 | 344 |
$this->request->data = $this->User->find('first', $options); |
344 | 345 |
$this->set('user', $this->request->data); |
345 |
// var_dump($this->request->data); |
|
346 |
// exit; |
|
347 | 346 |
} |
348 |
} |
|
347 |
}else{ |
|
348 |
//idとハッシュ値が不正の場合、トップページにリダイレクト |
|
349 |
$this->Session->setFlash( '無効なURLです'); |
|
350 |
return $this->redirect(array('controller' => 'top', 'action' => 'index')); |
|
349 | 351 |
|
350 |
// $options = array('conditions' => array('User.id' => $user_id,'User.status' => 1)); |
|
351 |
// // $this->request->data = $this->set('user',$this->User->find('first', $options)); |
|
352 |
// $this->set('user',$this->User->find('first', $options)); |
|
353 |
// // $this->set('user', $this->request->data); |
|
354 |
|
|
355 |
|
|
356 |
// // if ($this->User->exists() && $in_hash == $this->User->getActivationHash()) { |
|
357 |
// // var_dump($this->request->data); |
|
358 |
// // exit; |
|
359 |
// if ($this->request->is(array('post', 'put'))) { |
|
360 |
// // if($this->User->validates()){ |
|
361 |
|
|
362 |
// $this->User->save($this->request->data); |
|
363 |
// $this->redirect(array('action'=>'reset_pwd_comp_mail')); |
|
364 |
// // } else { |
|
365 |
// // $this->Flash->loginerror('パスワードが一致しません。誤りがないかもう一度ご確認の上、正確にご入力ください。', array( |
|
366 |
// // 'key' => 'positive', |
|
367 |
// // )); |
|
368 |
// // } |
|
369 |
// // } else { |
|
370 |
// // $options = array('conditions' => array('User.id' => $user_id,'User.status' => 1)); |
|
371 |
// // $this->request->data = $this->set('user',$this->User->find('first', $options)); |
|
372 |
// // // $this->set('user', $this->request->data); |
|
373 |
// // $this->Session->setFlash( '無効なURLですaaa'); |
|
374 |
// // } |
|
375 |
|
|
376 |
|
|
377 |
// }else{ |
|
378 |
// // 本登録に無効なURL |
|
379 |
// $this->Session->setFlash( '無効なURLです'); |
|
380 |
// } |
|
352 |
} |
|
381 | 353 |
} |
382 | 354 |
|
383 | 355 |
/** |
384 | 356 |
* |
385 | 357 |
*/ |
386 |
public function reset_pwd_comp_mail() { |
|
387 |
// if (!empty( $this->data)){ |
|
388 |
// 保存 |
|
389 |
$this->User->validate = $this->User->new_pwd_validate; |
|
390 |
if( $this->User->save($this->request->data('user'))){ |
|
391 |
// メール送信 |
|
392 |
$this->set('register',$this->Session->read('register')); |
|
358 |
public function reset_pwd_comp_mail($user_id = null) { |
|
359 |
// $options = array('conditions' => array('User.' . $this->User->primaryKey => $user_id)); |
|
360 |
// $this->request->data = $this->User->find('first', $options); |
|
361 |
// //バリデーションを無効にして保存 |
|
362 |
// $this->User->validate = $this->User->reset_pwd_comp_mail_validate; |
|
363 |
|
|
364 |
// if( $this->User->save($this->request->data)){ |
|
365 |
// var_dump($this->request->data['User']); |
|
366 |
// exit; |
|
367 |
if( !isset($this->request->data['User'])){ |
|
368 |
// $this->User->save($this->request->data,false); |
|
369 |
// メール送信 |
|
393 | 370 |
$mail = $this->Session->read('register.User.email'); |
394 |
// exit; |
|
395 |
$options = array('conditions' => array('User.email' => $mail)); |
|
396 |
$user = $this->User->find('first', $options); |
|
397 |
$name = $user['User']['login_id']; |
|
398 |
|
|
399 |
// ユーザアクティベート(本登録)用URLの作成 DSはスラッシュの意味 |
|
400 |
// $url = |
|
401 |
// DS . 'users' . // コントローラ |
|
402 |
// DS . 'newpwd' . // アクション |
|
403 |
// DS . $user['User']['id'] . // ユーザID |
|
404 |
// DS . $this->User->getActivationHash(); // ハッシュ値 |
|
405 |
// $url = Router::url( $url, true); // ドメイン(+サブディレクトリ)を付与 |
|
406 |
$comment = "本文本文本文本文本文本文本文本文"; |
|
371 |
|
|
407 | 372 |
$Email = new CakeEmail(); |
408 | 373 |
$Email->charset('ISO-2022-JP'); |
409 | 374 |
$Email->emailFormat('text'); |
410 | 375 |
$Email->template('comp_reset_pwd'); |
411 |
$Email->viewVars(array('name'=>$name,'comment'=>$comment)); |
|
376 |
// $Email->viewVars(array('name'=>$name,'comment'=>$comment));
|
|
412 | 377 |
$Email->from( MAIL_FROM ); //MAIL_FROM:Config/const.phpにて定義 |
413 | 378 |
$Email->to($mail); |
414 |
$Email->subject('[PICT CODE]問い合わせ');
|
|
379 |
$Email->subject('【PictCode】パスワードの再設定が完了しました。');
|
|
415 | 380 |
$Email->send(); |
416 |
} |
|
417 |
// } |
|
418 |
// }else{ |
|
419 |
// exit; |
|
420 |
// } |
|
421 |
debug($this->User->validationErrors); |
|
381 |
} |
|
382 |
else{ |
|
383 |
$options = array('conditions' => array('User.' . $this->User->primaryKey => $user_id)); |
|
384 |
$this->request->data = $this->User->find('first', $options); |
|
385 |
//バリデーションを無効にして保存 |
|
386 |
// $this->User->validate = $this->User->reset_pwd_comp_mail_validate; |
|
387 |
$this->User->save($this->request->data,false); |
|
388 |
} |
|
389 |
|
|
422 | 390 |
} |
423 | 391 |
|
424 | 392 |
|
app/Model/User.php | ||
---|---|---|
19 | 19 |
*/ |
20 | 20 |
public $validate = array( |
21 | 21 |
'login_id' => array( |
22 |
array( |
|
22 | 23 |
'rule' => array('notBlank'), |
23 | 24 |
'message' => 'この項目は入力必須です' |
24 | 25 |
), |
26 |
array( |
|
27 |
'rule' => 'isUnique', |
|
28 |
'message' => '既に登録されています' |
|
29 |
), |
|
30 |
), |
|
25 | 31 |
'email' => array( |
26 | 32 |
array( |
27 | 33 |
'rule' => array('notBlank'), |
... | ... | |
133 | 139 |
), |
134 | 140 |
), |
135 | 141 |
); |
136 |
public $new_pwd_validate = array(
|
|
142 |
public $new_pwd_validate = array(
|
|
137 | 143 |
|
138 | 144 |
'password' => array( |
139 | 145 |
array( |
140 |
'rule' => array('notBlank'),
|
|
146 |
'rule' => array('notBlank'),
|
|
141 | 147 |
'message' => 'パスワードを入力してください' |
142 | 148 |
), |
143 | 149 |
array( |
... | ... | |
151 | 157 |
), |
152 | 158 |
'password_confirm' => array( |
153 | 159 |
array( |
154 |
'rule' => array('notBlank'),
|
|
160 |
'rule' => array('notBlank'),
|
|
155 | 161 |
'message' => 'パスワード(確認)を入力してください' |
156 | 162 |
), |
157 | 163 |
), |
158 |
); |
|
164 |
); |
|
165 |
public $reset_pwd_comp_mail_validate = array( |
|
166 |
|
|
167 |
'password' => array( |
|
168 |
array( |
|
169 |
'rule' => array('notBlank'), |
|
170 |
'message' => 'パスワードを入力してください' |
|
171 |
), |
|
172 |
array( |
|
173 |
'rule' => array('minLength', 8), |
|
174 |
'message' => 'パスワードは8文字以上入力してください', |
|
175 |
), |
|
176 |
), |
|
177 |
); |
|
178 |
|
|
179 |
|
|
180 |
|
|
181 |
|
|
159 | 182 |
public function DuplicateEmailCheck(){ |
160 | 183 |
$query = array('conditions' => array('User.email' => $this->data['User']['email'],'User.status' => 1)); |
161 | 184 |
$num = $this->find('count',$query); |
... | ... | |
189 | 212 |
|
190 | 213 |
} |
191 | 214 |
|
192 |
public function getActivationHash() { |
|
193 |
// ユーザIDの有無確認 |
|
194 |
if (!isset($this->id)) { |
|
195 |
return false; |
|
196 |
} |
|
197 |
// 更新日時をハッシュ化 |
|
198 |
return Security::hash( $this->field('updated'), 'md5', true); |
|
199 |
} |
|
215 |
public function activationHash() { |
|
216 |
// ユーザIDの有無確認 |
|
217 |
|
|
218 |
if (!isset($this->id)) { |
|
219 |
return false; |
|
220 |
} |
|
221 |
// 更新日時をハッシュ化 |
|
222 |
// return Security::hash( $user_id['User']['updated'], 'md5', true); |
|
223 |
return Security::hash( $this->field('updated'), 'md5', true); |
|
224 |
} |
|
225 |
public function getActivationHash($id) { |
|
226 |
// ユーザIDの有無確認 |
|
227 |
$query = array('conditions' => array('User.id' => $id)); |
|
228 |
$user_id = $this->find('first',$query); |
|
229 |
if (!isset($user_id['User']['id'])) { |
|
230 |
// if (!isset($this->id)) { |
|
231 |
return false; |
|
232 |
} |
|
233 |
// 更新日時をハッシュ化 |
|
234 |
return Security::hash( $user_id['User']['updated'], 'md5', true); |
|
235 |
// return Security::hash( $this->field('updated'), 'md5', true); |
|
236 |
} |
|
200 | 237 |
|
201 | 238 |
|
202 | 239 |
//メールアドレスが登録されていない、またはメールアドレスのstatusが1ではない場合、エラーを出す |
app/View/Emails/text/comp_reset_pwd.ctp | ||
---|---|---|
1 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
2 |
このメールは、PICT CODE から配信されています |
|
3 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
1 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
2 |
このメールは、PICT CODE から自動配信されています
|
|
3 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
4 | 4 |
|
5 |
PictCodeのユーザーパスワードの再設定が完了しました。設定されたパスワードは忘れないようにメモ等に残し、大切に保管してください。 |
|
6 |
新しいパスワードで下記のURLをクリックし、ログインしてください。 |
|
5 | 7 |
|
6 |
パスワードが変更されました。 |
|
8 |
▼PictCode ログイン画面 |
|
9 |
URL: |
|
7 | 10 |
|
8 |
変更★変更★変更
|
|
11 |
PictCodeに関してご不明な点、ご質問などのお問い合わせは、こちらよりお願いします。
|
|
9 | 12 |
|
10 |
お名前:<?php echo $name;?> |
|
13 |
▼PictCode お問い合わせフォーム |
|
14 |
URL: |
|
11 | 15 |
|
12 |
お問い合わせ内容: |
|
13 | 16 |
|
14 |
<?php echo $comment;?> |
|
17 |
尚、このメールは、PictCodeにのユーザーパスワードの再発行を申請された方に自動配信されています。 |
|
18 |
本内容に覚えがなくメールを受け取られた方は、お問い合わせフォーム、もしくは下記の連絡先までご連絡ください。 |
|
15 | 19 |
|
16 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
17 |
PICT CODE カスタマーサポートセンター |
|
18 |
メールでのお問い合わせ: info@itkids.com |
|
19 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
20 |
---------------------------------------------------------------------------- |
|
21 |
■お問い合わせ先 |
|
22 |
IT KiDS株式会社 |
|
23 |
URL : http://itkids.club |
|
24 |
E-Mail:office@itkids.club |
|
25 |
------------------------------------------------ |
|
26 |
Copyright (C) 2016 IT KiDS Inc. All Rights Reserved. |
|
27 |
---------------------------------------------------------------------------- |
app/View/Emails/text/register_comp.ctp | ||
---|---|---|
1 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
2 |
このメールは、PICT CODE から自動配信されています |
|
3 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
4 |
|
|
5 |
【PictCode】への本登録が完了しました。 |
|
6 |
|
|
7 |
この度は、PictCodeユーザーにご登録いただき、誠にありがとうございます。 |
|
8 |
早速、PictCodeにログインし、誰でも簡単に、そして気軽に楽しめるPictCodeならではの「ビジュアルプログラミング」の世界を楽しみましょう。 |
|
9 |
|
|
10 |
▼PictCode ログイン画面 |
|
11 |
URL: |
|
12 |
|
|
13 |
PictCodeに関してご不明な点、ご質問などのお問い合わせは、こちらよりお願いします。 |
|
14 |
|
|
15 |
▼PictCode お問い合わせフォーム |
|
16 |
URL: |
|
17 |
|
|
18 |
また、ログインの際にパスワードをお忘れの方は、パスワードを再発行し、再設定を行ってください。 |
|
19 |
|
|
20 |
▼PictCode パスワード再発行 |
|
21 |
URL: |
|
22 |
|
|
23 |
|
|
24 |
尚、このメールはPictCodeにご登録いただいた方に自動送信されています。 |
|
25 |
|
|
26 |
---------------------------------------------------------------------------- |
|
27 |
■お問い合わせ先 |
|
28 |
IT KiDS株式会社 |
|
29 |
URL : http://itkids.club |
|
30 |
E-Mail:office@itkids.club |
|
31 |
------------------------------------------------ |
|
32 |
Copyright (C) 2016 IT KiDS Inc. All Rights Reserved. |
|
33 |
---------------------------------------------------------------------------- |
app/View/Emails/text/register_mail.ctp | ||
---|---|---|
1 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
2 |
このメールは、PICT CODE から自動配信されています |
|
3 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
4 |
|
|
5 |
この度は、PictCodeユーザーにご登録いただき、誠にありがとうございます。 |
|
6 |
|
|
7 |
▼本登録用URL |
|
8 |
URL:<?php echo $comment;?> |
|
9 |
|
|
10 |
PictCodeに関してご不明な点、ご質問などのお問い合わせは、こちらよりお願いします。 |
|
11 |
|
|
12 |
▼PictCode お問い合わせフォーム |
|
13 |
URL:http://itkids.club/top/contact |
|
14 |
|
|
15 |
|
|
16 |
尚、このメールは、PictCodeに仮登録いただいた方に自動配信されています。 |
|
17 |
本内容に覚えがなくメールを受け取られた方は、お問い合わせフォーム、もしくは下記の連絡先までご連絡ください。 |
|
18 |
|
|
19 |
---------------------------------------------------------------------------- |
|
20 |
■お問い合わせ先 |
|
21 |
IT KiDS株式会社 |
|
22 |
URL : http://itkids.club |
|
23 |
E-Mail:office@itkids.club |
|
24 |
------------------------------------------------ |
|
25 |
Copyright (C) 2016 IT KiDS Inc. All Rights Reserved. |
|
26 |
---------------------------------------------------------------------------- |
app/View/Emails/text/user_contact.ctp | ||
---|---|---|
1 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
2 |
このメールは、PICT CODE から配信されています |
|
3 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
1 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
2 |
このメールは、PICT CODE から自動配信されています
|
|
3 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
4 | 4 |
|
5 |
以下の内容で、お客様よりお問い合わせがありました。 |
|
5 |
この度は、PictCodeにお問い合わせいただき、誠にありがとうございました。折り返し、3営業日以内に回答させていただきます。お問い合わせいただきました内容によりましては、3営業日以上お時間をいただく場合があります。予めご了承ください。 |
|
6 |
万が一、5営業日以上経過しても返信メールが届かない場合には、大変お手数ですが、再度、お問い合わせフォームよりお問い合わせいただきますか、お電話(042-316-6388)にてお問い合わせいただきますよう、よろしくお願いいたします。 |
|
6 | 7 |
|
7 |
お名前:<?php echo $name;?> |
|
8 | 8 |
|
9 |
お問い合わせ内容: |
|
9 |
お名前: <?php echo $name;?> |
|
10 |
メールアドレス: <?php echo $mail;?> |
|
11 |
郵便番号: <?php echo $postcode;?> |
|
12 |
ご住所: <?php echo $address;?> |
|
13 |
お電話番号: <?php echo $tel;?> |
|
14 |
お問い合わせ内容: <?php echo $comment;?> |
|
10 | 15 |
|
11 |
<?php echo $comment;?> |
|
12 | 16 |
|
13 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
14 |
PICT CODE カスタマーサポートセンター |
|
15 |
メールでのお問い合わせ: info@itkids.com |
|
16 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
17 |
※ご入力いただきましたお客さまの個人情報は、本お問い合わせに関する回答以外の目的には利用いたしません。 |
|
18 |
尚、このメールはPictCodeよりお問い合わせいただいた方に、自動送信されています。 |
|
19 |
|
|
20 |
■PictCode管理会社 -------------------------------------------------------- |
|
21 |
IT KiDS株式会社 お問い合わせ係 |
|
22 |
〒184-0001 |
|
23 |
東京都小金井市関野町1丁目10番9号 101 |
|
24 |
URL : http://itkids.club |
|
25 |
E-Mail : office@itkids.club |
|
26 |
------------------------------------------------ |
|
27 |
Copyright (C) 2016 IT KiDS Inc. All Rights Reserved. |
|
28 |
---------------------------------------------------------------------------- |
app/View/Emails/text/user_reset_pwd.ctp | ||
---|---|---|
1 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
2 |
このメールは、PICT CODE から配信されています |
|
3 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
1 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
2 |
このメールは、PICT CODE から自動配信されています
|
|
3 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
4 | 4 |
|
5 |
PictCodeのユーザーパスワードを再発行します。 |
|
6 |
下記のURLをクリックし、新しいパスワードを入力して再設定を行ってください。 |
|
5 | 7 |
|
6 |
パスワードを変更する場合には下記リンクからお願いします。 |
|
8 |
▼パスワード再設定用URL |
|
9 |
URL: |
|
10 |
<?php echo $comment;?> |
|
7 | 11 |
|
8 |
お名前:<?php echo $name;?>
|
|
12 |
PictCodeに関してご不明な点、ご質問などのお問い合わせは、こちらよりお願いします。
|
|
9 | 13 |
|
10 |
お問い合わせ内容: |
|
14 |
▼お問い合わせフォーム |
|
15 |
URL:http://itkids.club/top/contact |
|
16 |
|
|
17 |
|
|
18 |
尚、このメールは、PictCodeにのユーザーパスワードの再発行を申請された方に自動配信されています。 |
|
19 |
本内容に覚えがなくメールを受け取られた方は、お問い合わせフォーム、もしくは下記の連絡先までご連絡ください。 |
|
11 | 20 |
|
12 |
<?php echo $comment;?> |
|
13 | 21 |
|
14 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
15 |
PICT CODE カスタマーサポートセンター |
|
16 |
メールでのお問い合わせ: info@itkids.com |
|
17 |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
|
22 |
■PictCode管理会社 -------------------------------------------------------- |
|
23 |
IT KiDS株式会社 お問い合わせ係 |
|
24 |
〒184-0001 |
|
25 |
東京都小金井市関野町1丁目10番9号 101 |
|
26 |
URL : http://itkids.club |
|
27 |
E-Mail : office@itkids.club |
|
28 |
------------------------------------------------ |
|
29 |
Copyright (C) 2016 IT KiDS Inc. All Rights Reserved. |
|
30 |
---------------------------------------------------------------------------- |
app/View/users/newpwd.ctp | ||
---|---|---|
8 | 8 |
<div id="contents"> |
9 | 9 |
<hr> |
10 | 10 |
<?php echo $this->Form->create('User',array( |
11 |
'type' => 'post', |
|
11 | 12 |
'div' => false, |
12 | 13 |
'novalidate' => true, |
13 | 14 |
'inputDefaults' => array( |
... | ... | |
41 | 42 |
|
42 | 43 |
|
43 | 44 |
//表示されない領域 |
45 |
echo $this->Form->input('id', |
|
46 |
array( 'type' => 'hidden', |
|
47 |
'label' => 'ニックネーム', |
|
48 |
'placeholder'=>'ニックネーム', |
|
49 |
'value' => $user['User']['id'], |
|
50 |
)); |
|
44 | 51 |
echo $this->Form->input('login_id', |
45 | 52 |
array( 'type' => 'hidden', |
46 | 53 |
'label' => 'ニックネーム', |
他の形式にエクスポート: Unified diff