Seiji Sogabe
sogab****@alles*****
2005年 6月 18日 (土) 20:57:28 JST
こんばんわ、曽我部です。 shellac wrote: > catalog/create_account_process.phpの > // build the message content 以下を変更するのは分かるのですが > $name = tep_get_fullname($firstname,$lastname); の前へ単純に > $email_text .= EMAIL_TEXT_TOP; ように入れてみたのですがダメでした。 > なにか挿入の仕方があるのでしょうか。 どのようにだめなのかわかりませんが、 > $name = tep_get_fullname($firstname,$lastname); のあとの、 > if (ACCOUNT_GENDER == 'true') { > if ($HTTP_POST_VARS['gender'] == 'm') { > $email_text = EMAIL_GREET_MR; > } else { > $email_text = EMAIL_GREET_MS; > } > } else { > $email_text = EMAIL_GREET_NONE; > } で、$email_textをEMAIL_GREET_ほげに設定しているので(追加ではなく)、EMAIL_TEXT_TOPが反映されないので はないでしょうか。 > if (ACCOUNT_GENDER == 'true') { > if ($HTTP_POST_VARS['gender'] == 'm') { > $email_text .= EMAIL_GREET_MR; > } else { > $email_text .= EMAIL_GREET_MS; > } > } else { > $email_text .= EMAIL_GREET_NONE; > } ($email_textのあとの "="を".="に変更) に変更すればよいのではないでしょうか。 -- sogab****@alles*****