setDefaultFrom() публичный статический Метод

Sets Default From-email and name of the message
public static setDefaultFrom ( string $email, string $name = null ) : void
$email string
$name string optional
Результат void
Пример #1
0
 protected function _initMail()
 {
     Zend_Mail::setDefaultFrom('*****@*****.**', 'XLR8U Fitness');
     Zend_Mail::setDefaultReplyTo('*****@*****.**', 'XLR8U Fitness');
     $transport = new Zend_Mail_Transport_Sendmail();
     Zend_Mail::setDefaultTransport($transport);
 }
Пример #2
0
 public function __construct($scriptName, $day = null)
 {
     if ($day != null) {
         $this->_day = $day;
     }
     $this->_scriptName = $scriptName;
     $this->_config = Zend_Registry::get('config');
     # init $this->_texts
     $this->_texts = new stdClass();
     $smtp_cfg = array('auth' => $this->_config->mail->auth, 'username' => $this->_config->mail->username, 'password' => $this->_config->mail->password);
     // echo 'auth: '. var_dump($this->_config->mail->auth);
     // echo 'username: '******'password: '******'auth' => 'login',
     //                 'username' => '*****@*****.**',
     //                 'password' => 'alexgemalexgem');
     $transport = new Zend_Mail_Transport_Smtp($this->_config->mail->smtp, $smtp_cfg);
     Zend_Mail::setDefaultTransport($transport);
     Zend_Mail::setDefaultFrom($this->_config->mail->addressFrom, $this->_config->mail->labelFrom);
     $langs = Zend_Registry::get('db')->fetchCol('SELECT DISTINCT(`lang`) FROM `user`');
     foreach ($langs as $lang) {
         $file = APPLICATION_PATH . '/configs/langs/' . $lang . '/emails.ini';
         $this->_texts->{$lang} = new Zend_Config_Ini($file, $this->_scriptName);
     }
 }
Пример #3
0
 public function __construct()
 {
     $tr = new Zend_Mail_Transport_Smtp(Zend_Registry::get('Setting')->EMAIL_SMTP_HOST, array('auth' => 'login', 'username' => Zend_Registry::get('Setting')->EMAIL_SMTP_USER, 'password' => Zend_Registry::get('Setting')->EMAIL_SMTP_PASS, 'port' => Zend_Registry::get('Setting')->EMAIL_SMTP_PORT));
     if (Zend_Registry::get('Setting')->EMAIL_SMTP_SSL) {
         array('ssl' => Zend_Registry::get('Setting')->EMAIL_SMTP_SSL);
     }
     Zend_Mail::setDefaultTransport($tr);
     Zend_Mail::setDefaultFrom(Zend_Registry::get('Setting')->webmaster_email, Zend_Registry::get('Setting')->webmaster_name);
     Zend_Mail::setDefaultReplyTo(Zend_Registry::get('Setting')->webmaster_email, Zend_Registry::get('Setting')->webmaster_name);
 }
Пример #4
0
 protected function _initMail()
 {
     $mailOption = $this->getOption('resources');
     $mailOption = $mailOption['mail'];
     $host = $mailOption['host'];
     $mailOption = $mailOption['info'];
     $transport = new Zend_Mail_Transport_Smtp($host, $mailOption);
     //Zend_Debug::dump($transport);die;
     Zend_Registry::set('mailTransport', $transport);
     Zend_Mail::setDefaultTransport($transport);
     Zend_Mail::setDefaultFrom(EMAIL_SUPPORT);
 }
Пример #5
0
 public function sendEmail($message)
 {
     $config = array('auth' => 'login', 'username' => 'AKIAJJW5TG53CLR72RQA', 'password' => 'AgJ7wBiuHZ1bLn1sUKr15/NUf/X+1ceN4cTatAVYFOxA', 'ssl' => 'tls', 'port' => 587);
     $transport = new Zend_Mail_Transport_Smtp('email-smtp.us-east-1.amazonaws.com', $config);
     Zend_Mail::setDefaultFrom('*****@*****.**');
     Zend_Mail::setDefaultTransport($transport);
     $mail = new Zend_Mail();
     $mail->setBodyHtml($message, 'utf-8');
     $mail->addTo("*****@*****.**");
     try {
         $mail->send();
     } catch (Zend_Mail_Exception $e) {
         return $e->getMessage();
     }
     return true;
 }
Пример #6
0
 /**
  * Configures and fetches a singleton instance of `Zend_Mail`.
  * Also clears settings from previous use onthe `Zend_Mail` object
  * unless you call `getInstance(false)`.
  */
 public static function getInstance($clear = true)
 {
     // Has it been requested before?
     if (self::$mailer === null) {
         // Parse/verify configuration file
         self::$config = conf('Mailer');
         // Create the new Zend_Mail object
         self::$mailer = new Zend_Mail('UTF-8');
         // Set the transport method
         if (!isset(self::$config['transport']) || !isset(self::$config['transport']['type'])) {
             self::$error = 'No transport method defined.';
             return false;
         }
         switch (self::$config['transport']['type']) {
             case 'smtp':
                 $config = self::$config['transport'];
                 $host = $config['host'];
                 unset($config['host']);
                 unset($config['type']);
                 require_once 'Zend/Mail/Transport/Smtp.php';
                 self::$transport = new Zend_Mail_Transport_Smtp($host, $config);
                 break;
             case 'sendmail':
                 require_once 'Zend/Mail/Transport/Sendmail.php';
                 self::$transport = new Zend_Mail_Transport_Sendmail();
                 break;
             case 'file':
                 if (!isset(self::$config['transport']['path'])) {
                     self::$config['transport']['path'] = 'cache/mailer';
                 }
                 if (!file_exists(self::$config['transport']['path'])) {
                     mkdir(self::$config['transport']['path']);
                 }
                 require_once 'Zend/Mail/Transport/File.php';
                 self::$transport = new Zend_Mail_Transport_File(array('path' => self::$config['transport']['path'], 'callback' => function ($transport) {
                     // Files are named DATETIME-RECIPIENT-RAND.tmp
                     return $_SERVER['REQUEST_TIME'] . '-' . $transport->recipients . '-' . mt_rand() . '.tmp';
                 }));
                 break;
             default:
                 self::$error = 'Unknown transport type.';
                 return false;
         }
         Zend_Mail::setDefaultTransport(self::$transport);
         // Set default from info
         $email_from = self::$config['email_from'] !== 'default' ? self::$config['email_from'] : conf('General', 'email_from');
         $email_name = self::$config['email_name'] !== 'default' ? self::$config['email_name'] : conf('General', 'site_name');
         Zend_Mail::setDefaultFrom($email_from, $email_name);
     }
     // Clear mailer settings
     if ($clear) {
         self::$mailer->clearRecipients();
         self::$mailer->clearSubject();
         self::$mailer->clearFrom();
     }
     return self::$mailer;
 }
Пример #7
0
 /**
  * Get the fallback Transport, used if the plugin is disabled
  * @return Zend_Mail_Transport_Sendmail
  */
 protected function _getFallBackTransport($parameters = null)
 {
     Zend_Mail::setDefaultFrom($this->settings->siteEmail);
     Zend_Mail::setDefaultReplyTo($this->settings->siteEmail, $this->seoOption->siteName);
     return new Zend_Mail_Transport_Sendmail($parameters);
 }
Пример #8
0
 public function testVerifyDefaults()
 {
     Zend_Mail::setDefaultFrom('*****@*****.**');
     $mail = $this->getGeneratedEmail(array('addresses' => '*****@*****.**'));
     $this->assertEquals('*****@*****.**', $mail->getFrom());
     $this->assertStringStartsWith('Errors in project', $mail->getSubject());
 }
Пример #9
0
 /**
  * Initializes the mailer with the settings form Settings -> System -> Email Settings
  *
  * @return void
  */
 public function init($type = "email")
 {
     $systemConfig = \Pimcore\Config::getSystemConfig()->toArray();
     $emailSettings =& $systemConfig[$type];
     if ($emailSettings['sender']['email']) {
         \Zend_Mail::setDefaultFrom($emailSettings['sender']['email'], $emailSettings['sender']['name']);
     }
     if ($emailSettings['return']['email']) {
         \Zend_Mail::setDefaultReplyTo($emailSettings['return']['email'], $emailSettings['return']['name']);
     }
     if ($emailSettings['method'] == "smtp") {
         $config = array();
         if ($emailSettings['smtp']['name']) {
             $config['name'] = $emailSettings['smtp']['name'];
         }
         if ($emailSettings['smtp']['ssl']) {
             $config['ssl'] = $emailSettings['smtp']['ssl'];
         }
         if ($emailSettings['smtp']['port']) {
             $config['port'] = $emailSettings['smtp']['port'];
         }
         if ($emailSettings['smtp']['auth']['method']) {
             $config['auth'] = $emailSettings['smtp']['auth']['method'];
             $config['username'] = $emailSettings['smtp']['auth']['username'];
             $config['password'] = $emailSettings['smtp']['auth']['password'];
         }
         $transport = new \Zend_Mail_Transport_Smtp($emailSettings['smtp']['host'], $config);
         \Zend_Mail::setDefaultTransport($transport);
     }
     //setting debug email addresses
     if ($type == "email" && empty(self::$debugEmailAddresses)) {
         if ($emailSettings['debug']['emailaddresses']) {
             foreach (explode(',', $emailSettings['debug']['emailaddresses']) as $emailAddress) {
                 self::$debugEmailAddresses[] = $emailAddress;
             }
         }
     }
     $this->placeholderObject = new \Pimcore\Placeholder();
 }
Пример #10
0
 public function testMethodSendUsesDefaults()
 {
     Zend_Mail::setDefaultFrom('*****@*****.**', 'John Doe');
     Zend_Mail::setDefaultReplyTo('*****@*****.**', 'Foo Bar');
     $mail = new Zend_Mail();
     $mail->setBodyText('Defaults Test');
     $mock = new Zend_Mail_Transport_Mock();
     $mail->send($mock);
     $headers = $mock->headers;
     $this->assertTrue($mock->called);
     $this->assertEquals($mock->from, '*****@*****.**');
     $this->assertEquals($headers['From'][0], 'John Doe <*****@*****.**>');
     $this->assertEquals($headers['Reply-To'][0], 'Foo Bar <*****@*****.**>');
 }
Пример #11
0
 protected function initMail()
 {
     if (isset($this['mail.from.email'])) {
         \Zend_Mail::setDefaultFrom($this['mail.from.email'], $this['mail.from.name']);
     }
     if (isset($this['mail.replyto.email'])) {
         \Zend_Mail::setDefaultReplyTo($this['mail.replyto.email'], $this['mail.replyto.name']);
     }
     // Create transport
     switch (strtolower($this['mail.method'])) {
         case 'smtp':
             $transport = new \Zend_Mail_Transport_Smtp($this['mail.host'], (array) $this['mail.options']);
             \Zend_Mail::setDefaultTransport($transport);
             break;
         case 'sendmail':
         default:
             $transport = new \Zend_Mail_Transport_Sendmail((array) $this['mail.options']);
             \Zend_Mail::setDefaultTransport($transport);
             break;
     }
 }
Пример #12
0
 /**
  * @static
  * @param  $sender
  * @param  $recipients
  * @param  $subject
  * @return Zend_Mail
  */
 public static function getMail($recipients = null, $subject = null)
 {
     $values = Pimcore_Config::getSystemConfig();
     $valueArray = $values->toArray();
     $emailSettings = $valueArray["email"];
     $mail = new Zend_Mail("UTF-8");
     if (!empty($emailSettings['sender']['email'])) {
         $mail->setDefaultFrom($emailSettings['sender']['email'], $emailSettings['sender']['name']);
     }
     if (!empty($emailSettings['return']['email'])) {
         $mail->setDefaultReplyTo($emailSettings['return']['email'], $emailSettings['return']['name']);
     }
     if ($emailSettings['method'] == "smtp") {
         $config = array();
         if (!empty($emailSettings['smtp']['name'])) {
             $config['name'] = $emailSettings['smtp']['name'];
         }
         if (!empty($emailSettings['smtp']['ssl'])) {
             $config['ssl'] = $emailSettings['smtp']['ssl'];
         }
         if (!empty($emailSettings['smtp']['port'])) {
             $config['port'] = $emailSettings['smtp']['port'];
         }
         if (!empty($emailSettings['smtp']['auth']['method'])) {
             $config['auth'] = $emailSettings['smtp']['auth']['method'];
             $config['username'] = $emailSettings['smtp']['auth']['username'];
             $config['password'] = $emailSettings['smtp']['auth']['password'];
         }
         $transport = new Zend_Mail_Transport_Smtp($emailSettings['smtp']['host'], $config);
         //Logger::log($transport);
         //Logger::log($config);
         $mail->setDefaultTransport($transport);
     }
     if ($recipients) {
         if (is_string($recipients)) {
             $mail->addTo($recipients);
         } else {
             if (is_array($recipients)) {
                 foreach ($recipients as $recipient) {
                     $mail->addTo($recipient);
                 }
             }
         }
     }
     if ($subject) {
         $mail->setSubject($subject);
     }
     return $mail;
 }
Пример #13
0
// Create application, bootstrap, and run
$application = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
// the database adapter for the session
Zend_Registry::set("dbAdapter", $application->getBootstrap()->getPluginResource('db')->getDbAdapter());
$cache = $application->getBootstrap()->getPluginResource('cachemanager')->getCacheManager()->getCache('database');
Zend_Registry::set('cache', $cache);
# Zend Translate instance
$translate = new Zend_Translate(array('adapter' => 'ini', 'content' => APPLICATION_PATH . '/configs/en.language.ini'));
# $translate->setCache($cache); // the caching of the translate seems to cause an error, do not know why
Zend_Registry::set('translate', $translate);
# Zend Logger instance
Zend_Registry::set("logger", $application->getBootstrap()->getPluginResource('log')->getLog());
# currency object
$currency = new Zend_Currency('en_US');
$currency->setCache($cache);
Zend_Registry::set('currency', $currency);
# Zend Mail instance
// create a new instance
$mailer = new Zend_Mail('utf8');
// set the default transport configured in application.ini
$mailer->setDefaultTransport($application->getBootstrap()->getPluginResource('mail')->getMail());
// set the default to and from addresses
$mail_config = new Zend_Config($application->getBootstrap()->getPluginResource('mail')->getOptions());
$mailer->setDefaultFrom($mail_config->defaultFrom->email, $mail_config->defaultFrom->name);
$mailer->setDefaultReplyTo($mail_config->defaultReplyTo->email, $mail_config->defaultReplyTo->name);
// add the mail instance to the registry
Zend_Registry::set("mail", $mailer);
// add caching for Zend_Table which is used for Session information
Zend_Db_Table_Abstract::setDefaultMetadataCache($cache);
# run the default page
$application->bootstrap()->run();