Skip to content

mendo/li3_swiftmailer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

li3_swiftmailer

A wrapper that helps working with swiftmailer in li3

Installation:

  1. clone
  2. run git submodule init
  3. run git submodule update. This will import the swiftmailer library to libraries/swiftmailer
  4. add to your app. Here is an example:
Libraries::add('li3_swiftmailer', array(
  'connection' => array(
		'development' => array(
			'type' => 'smtp',
			'host' => 'dev.smtp-server.example',
			'port' => 25,
			'from' => '[email protected]',
		),
		'test' => array(
  		'type' => 'smtp',
			'host' => 'test.smtp-server.example',
			'port' => 25,
			'from' => '[email protected]',
		),
		'production' => array(
  		'type' => 'smtp',
			'host' => 'production.smtp-server.example',
			'port' => 25,
			'from' => '[email protected]',
      'username' => 'user',
		  'password' => 'staple horse battery',
		),
	)
));

About

A wrapper that helps working with swiftmailer in li3

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages