好像好多...
class\summary\mail\confirmemailmessage.class.php
templates\summary\email_confirm.template
{$locale->pr("register_confirmation_email_text", $activeLink)}
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( "歡迎加入plog" );
$message->addTo( $userInfo->getEmail());
$message->setFrom( $this->_userInfo->getEmail());
// and finally send it
$emailService = new EmailService();
$emailService->sendMessage( $message );
}
return true;
}