Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/djalmaaraujo/spaghetti-postmark-mail
- Owner: djalmaaraujo
- Created: 2012-04-26T20:52:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-02-07T14:29:04.000Z (almost 12 years ago)
- Last Synced: 2024-04-13T11:00:07.202Z (7 months ago)
- Language: PHP
- Size: 101 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```