Giter Club home page Giter Club logo

cakephp-euromsg's Introduction

cakephp-euromsg

MailTransport class to send emails over Euromsg webservices.

Example Config

in your app/Config/email.php file

	public $euromsg = array(
		'from' => array('[email protected]' => 'Example Site'),
		'FromName' => 'Example Site',
		'FromAddress' => '[email protected]',
		'ReplyAddress' => '[email protected]',
		'url' => 'http://ws.euromsg.com/ecomm/',
		'username' => 'euromsg_username',
		'password' => 'euromsg_password',
		'transport' => 'Euromsg'
	);

Example Usage

in any of your controller or shell

App::uses('CakeEmail', 'Network/Email');
$Email = new CakeEmail('euromsg');
$Email->to('[email protected]');
$Email->template('default', 'default');
$Email->emailFormat('html');
$Email->subject('Test Subject');
$Email->send("Lets test drive this puppy");

This example uses default email layout and default email view template in CakePHP.

Notes

According to euromsg api, you must

  • use html in your messages, which means your mail body must contain
	<html><body> MESSAGE </body></html>
  • In your config, FromName and FromAddress variables must be same as in your euromsg admin panel.

cakephp-euromsg's People

Contributors

gcg avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.