Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は新しいサイトを作成しており、既に電子メールの確認コードを配置しています。しかし、ユーザーの電子メール プロバイダーに固有の「受信トレイに移動」リンクを作成する方法はありますか? 例えば:
私が推測しているifステートメントのようなものですか?ちょっとしたアイデアでもいいです!
$email = $_POST['email']; $ext = array('live.com','yahoo.com'); $domain = explode('@', $email); if ( $domain[1] == $ext[0]) { // Go to Live.com } if( $domain[1] == $ext[1]) { //Go to Yahoo.com }
with email は登録フォーム/購読フォームのフィールド名です