Web サイトでは、ユーザーによる悪意のある登録、本人確認、その他の操作を防ぐために電子メール認証を使用する必要がある場合があります。しかし、PHP バックエンドを使用して確認メールを送信するにはどうすればよいでしょうか?この記事では、一連の登録例を使用して、PHP が電子メールを送信する方法を説明します。
ユーザー登録における最も一般的なセキュリティ検証の 1 つは、電子メール検証です。業界の一般的な慣例によれば、電子メール検証は潜在的なセキュリティ リスクを回避するために非常に重要です。ここで、これらのベスト プラクティスについて説明し、PHP で電子メール検証を作成する方法を見てみましょう。
登録フォームから始めましょう:
<form method="post" action="http://mydomain.com/registration/"> <fieldset> <label for="fname">First Name:</label> <input type="text" name="fname" required /> </fieldset> <fieldset> <label for="lname">Last Name:</label> <input type="text" name="lname" required /> </fieldset> <fieldset> <label for="email">Last name:</label> <input type="email" name="email" required /> </fieldset> <fieldset> <label for="password">Password:</label> <input type="password" name="password" required /> </fieldset> <fieldset> <label for="cpassword">Confirm Password:</label> <input type="password" name="cpassword" required /> </fieldset> <fieldset> <button type="submit">Register</button> </fieldset> </form>
次にデータベースのテーブル構造です:
CREATE TABLE IF NOT EXISTS `user` ( `id` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY, `fname` VARCHAR(255) , `lname` VARCHAR(255) , `email` VARCHAR(50) , `password` VARCHAR(50) , `is_active` INT(1) DEFAULT '0', `verify_token` VARCHAR(255) , `created_at` TIMESTAMP, `updated_at` TIMESTAMP, );
フォームが送信されたら、ユーザーの入力を検証し、新しいユーザーを作成する必要があります:
// Validation rules $rules = array( 'fname' => 'required|max:255', 'lname' => 'required|max:255', 'email' => 'required', 'password' => 'required|min:6|max:20', 'cpassword' => 'same:password' ); $validator = Validator::make(Input::all(), $rules); // If input not valid, go back to registration page if($validator->fails()) { return Redirect::to('registration')->with('error', $validator->messages()->first())->withInput(); } $user = new User(); $user->fname = Input::get('fname'); $user->lname = Input::get('lname'); $user->password = Input::get('password'); // You will generate the verification code here and save it to the database // Save user to the database if(!$user->save()) { // If unable to write to database for any reason, show the error return Redirect::to('registration')->with('error', 'Unable to write to database at this time. Please try again later.')->withInput(); } // User is created and saved to database // Verification e-mail will be sent here // Go back to registration page and show the success message return Redirect::to('registration')->with('success', 'You have successfully created an account. The verification link has been sent to e-mail address you have provided. Please click on that link to activate your account.');
登録後、ユーザーのメールアドレスが認証されるまで、ユーザーのアカウントは無効のままです。この機能は、ユーザーが入力された電子メール アドレスの所有者であることを確認し、スパムや電子メールの不正使用、情報漏洩を防ぐのに役立ちます。
プロセス全体は非常に簡単です。新しいユーザーが作成されると、登録プロセス中にユーザーが入力した電子メール アドレスに確認リンクを含む電子メールが送信されます。ユーザーが電子メール検証リンクをクリックして電子メール アドレスを確認するまで、ユーザーはログインして Web サイト アプリケーションを使用できません。
検証済みリンクについては、注意する必要があることがいくつかあります。検証されたリンクには、ネットワーク攻撃を防ぐために、十分な長さのランダムに生成されたトークンが含まれている必要があります。同時に、複数のユーザーを攻撃する潜在的な危険を回避するために、電子メール検証にはユーザーの一意の識別子も含める必要があります。
それでは、実際に検証リンクを生成する方法を見てみましょう:
// We will generate a random 32 alphanumeric string // It is almost impossible to brute-force this key space $code = str_random(32); $user->confirmation_code = $code;
この検証が作成されたら、データベースに保存してユーザーに送信します:
Mail::send('emails.email-confirmation', array('code' => $code, 'id' => $user->id), function($message) { $message->from('my@domain.com', 'Mydomain.com')->to($user->email, $user->fname . ' ' . $user->lname)->subject('Mydomain.com: E-mail confirmation'); });
メール検証の内容:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> </head> <body> <p style="margin:0"> Please confirm your e-mail address by clicking the following link: <a href="http://mydomain.com/verify?code=<?php echo $code; ?>&user=<?php echo $id; ?>"></a> </p> </body> </html>
それでは、それが機能するかどうかを確認してみましょう:
$user = User::where('id', '=', Input::get('user')) ->where('is_active', '=', 0) ->where('verify_token', '=', Input::get('code')) ->where('created_at', '>=', time() - (86400 * 2)) ->first(); if($user) { $user->verify_token = null; $user->is_active = 1; if(!$user->save()) { // If unable to write to database for any reason, show the error return Redirect::to('verify')->with('error', 'Unable to connect to database at this time. Please try again later.'); } // Show the success message return Redirect::to('verify')->with('success', 'You account is now active. Thank you.'); } // Code not valid, show error message return Redirect::to('verify')->with('error', 'Verification code not valid.');
結論:
上記のコードは単なるチュートリアルの例であり、十分にテストされていません。 Web アプリケーションで使用する前にテストしてください。上記のコードは Laravel フレームワークで実行されていますが、他の PHP フレームワークに簡単に移行できます。同時に、確認リンクは 48 時間有効で、その後は期限切れになります。ワークキューを導入すると、期限切れの検証リンクをタイムリーに処理できます。
関連する推奨事項:
php 完全な検証コード コード php 検証コードの生成 php SMS 検証コード php 検証コード コード
php SMS インターフェイスのサンプル コード (入門)
php SMS ゲートウェイ SMS コンテンツにはスペースを含めることはできません、SMS ゲートウェイ SMS コンテンツ_PHP チュートリアル
以上がPHPでユーザー認証用のメールを送信する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。