Skip to content

Extend Network/Email/CakeEmail allowing embedded image inline in templates.

License

Notifications You must be signed in to change notification settings

fawno/FawnoEmail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Package at Packagist GitHub license

FawnoEmail

Extend Cake\Mailer\Email allowing image inline in templates.

Install via composer

Since v3, CakePHP uses composer, the easiest way to set up is by either running

  composer require fawno/fawnoemail

Usage

Whenever you need to send email, ensure this class is loaded:

  use Fawno\Mailer\FawnoEmail;

Use the class as normal CakeEmail:

  $email = new FawnoEmail();
  $email->to(array('[email protected]' => 'Example'));
  $email->subject('Example Email');
  $email->template('default');
  $email->send();

In template:

  <img src="cid:/full/path/image">
  <img src="cid:///full/path/image">
  <img src="file:/full/path/image">
  <img src="file:///full/path/image">
  echo $this->Html->image('cid:///full/path/image');
  echo $this->Html->image('file:///full/path/image');

About

Extend Network/Email/CakeEmail allowing embedded image inline in templates.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages