Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/djalmaaraujo/spaghetti-postmark-mail

Postmark Spaghetti Framework Wrapper (postmarkapp.com)
https://github.com/djalmaaraujo/spaghetti-postmark-mail

Last synced: 30 days ago
JSON representation

Postmark Spaghetti Framework Wrapper (postmarkapp.com)

Awesome Lists containing this project

README

        

# Postmark API for Spaghetti Framework

# Example
```
$postmark = new Postmark(
'postmark-api-key,
'From Name ,
'[email protected]'
);

$return = $postmark->to('Your name ')
->subject('Set your subject')
->viewData(array(
'type' => 'something',
'data' => $user
))
->load_view('view_folder/template.htm')
->send();
```