mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
30 lines
559 B
PHP
30 lines
559 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Notification\Mail;
|
|
|
|
class MailTest extends AbstractMail
|
|
{
|
|
|
|
public function subject()
|
|
{
|
|
return _('mail:: test d\'envoi d\'email');
|
|
}
|
|
|
|
public function message()
|
|
{
|
|
return sprintf(
|
|
_('Ce mail est un test d\'envoi de mail depuis %s'), $this->registry->get('GV_ServerName')
|
|
);
|
|
}
|
|
|
|
public function buttonText()
|
|
{
|
|
return _('Return to Phraseanet');
|
|
}
|
|
|
|
public function buttonURL()
|
|
{
|
|
return $this->registry->get('GV_ServerName');
|
|
}
|
|
}
|