-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
登録メールまたは登録確認メール送信時の判定条件 #1000
Comments
ちなみにパラメーター設定CUSTOMER_CONFIRM_MAIL == false の時の動作を確認すると
となります。 |
Merged
LC_Page_Admin_Customer
$resend_flg
SC_Helper_Mailの責務はメールを送信することとすると、
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
オリジナルの条件式
ec-cube2/data/class/helper/SC_Helper_Mail.php
Line 383 in fc5a36a
リファクタリングの条件式
PR頂いて、条件式部分を見ていて思ったのですが、
$arrCustomerData['status'] == 1
= 「仮会員」の状態の時は「会員登録のご確認」メールを出すはずですよね?条件を満たさないと「会員登録のご完了」メールが送信されるようになっている、と。
そうなると実は
&& (CUSTOMER_CONFIRM_MAIL == true || $resend_flg == true)
も不要なのではないかと思いました。CUSTOMER_CONFIRM_MAIL == true
じゃないと仮会員にならないはず$resend_flg
はそもそも不要なのでは説ec-cube2/data/class/pages/entry/LC_Page_Entry.php
Lines 194 to 195 in fc5a36a
ec-cube2/data/class/pages/regist/LC_Page_Regist.php
Lines 71 to 72 in fc5a36a
$arrCustomerData['status'] == 1
の状態の会員に「会員登録のご完了」メールを送る状況ってあるのでしょうか??Originally posted by @clicktx in #989 (comment)
The text was updated successfully, but these errors were encountered: