p.s我的是1.01版
1.01有提供email charset!
可是,我有問題,email認證信的內容在locale file裡,但是信件主旨,是在哪?
我找到一個/class/action/admin/adminaddbloguseraction.class.php
改了一下,似乎沒用???
可是,我有問題,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 );
}