歡迎光臨, 訪客. 請先 登入註冊一個帳號.
四月 18, 2025, 02:41:29 下午
19595 文章 在 3865 主題 由 4579 會員
最新註冊會員: aa123aa1
  列出文章
頁: [1]
1  支援 / 使用與操作 / Re: 也是亂碼的問題? 於: 十一月 14, 2005, 01:33:10 下午
請問一下email charset 是在那個地方?    一直找不到說

p.s我的是1.01版

1.01有提供email charset!

可是,我有問題,email認證信的內容在locale file裡,但是信件主旨,是在哪?
我找到一個/class/action/admin/adminaddbloguseraction.class.php
改了一下,似乎沒用???

        
程式碼:
function sendNotificationEmail( $userInfo )
        {
            // if everything went fine, we can now send the confirmation email
            // only if the user specified a valid email address
            if( $userInfo->getEmail() != "" ) {
             // build an email message
                $message = new EmailMessage();
                $message->setBody( $this->_notificationText );
                $message->setSubject( "歡迎加入部落格" );
                $message->addTo( $userInfo->getEmail());
                $message->setFrom( $this->_userInfo->getEmail());
                // and finally send it
                $emailService = new EmailService();
                $emailService->sendMessage( $message );
            }
頁: [1]