Skip to content
Michelangelo Turillo edited this page Jun 3, 2014 · 3 revisions

ShineISP uses the GoalioMailService module in order to set the email in outbound. In order to set your SMTP credentials you have to open the goaliomailservice.local.php file located at /config/autoload/goaliomailservice.local.php and edit the array item host, username, password.

$settings = array(
    'transport_class' => 'Zend\Mail\Transport\Smtp',
    'options_class' => 'Zend\Mail\Transport\SmtpOptions',
    'options' => array(
        'host' => 'YOUR_SMTP_SERVER',
        'connection_class' => 'login',
        'connection_config' => array(
            'ssl' => 'tls',
            'username' => 'YOUR_USERNAME',
            'password' => 'YOUR_PASSWORD'
        ),
        'port' => YOUR_SERVER_PORT
    )
);

Links

HOME

  • ShineISP Overview
    • [Web Hosting](Web Hosting)
    • [Getting Involved](Getting Involved)
    • Download
  • Configuration
    • [Web Server](Web Server)
    • [Database Configuration](Database Configuration)
    • [Software Configuration](Software Configuration)
    • [SMTP Mail](Smtp Mail)
  • Modules
    • Admin
    • Application * [Layout](Frontend Layout) * Homepage
    • Dummy
    • Base
      • Localization
      • [Common Layout](Common Layout)
      • [Error Pages](Error Pages)
      • [Login Process](Login Process)
    • Cms
    • Customer
      • [Customer Settings](Customer Settings)
    • Product
      • [Product Attributes](Product Attributes)
      • [Group of Attributes](Group of Attributes)
      • [Set of Attributes](Set of Attributes)
      • [Product Settings](Product Settings)
  • [Error Handler](Error Handler)
    • [Error Pages](Error Pages)
    • Logging
    • [Common errors](Common errors)
Clone this wiki locally