Skip to content

Instantly share code, notes, and snippets.

@ziemekpr0
Created May 15, 2017 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziemekpr0/a6a7ca6c883f7c00cae46ea05f370cf7 to your computer and use it in GitHub Desktop.
Save ziemekpr0/a6a7ca6c883f7c00cae46ea05f370cf7 to your computer and use it in GitHub Desktop.
Konfiguracja CodeIgniter do wysyłania wiadomości ze skrzynki utworzonej na serwerach nazwa.pl
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$config = array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://nazwa-klienta-nazwa.nazwa.pl',
'smtp_port' => '465',
'smtp_user' => 'nazwa@domena.pl',
'smtp_pass' => 'haslo-do-skrzynki',
'mailtype' => 'html'
);
/* End of file email.php */
/* Location: ./application/config/email.php */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment