All Projects → lorenzo → Pinky

lorenzo / Pinky

Licence: mit
A Foundation for Emails (Inky) template transpiler

Projects that are alternatives of or similar to Pinky

Magma
The magma server daemon, is an encrypted email system with support for SMTP, POP, IMAP, HTTP and MOLTEN,. Additional support for DMTP and DMAP is currently in active development.
Stars: ✭ 1,740 (+1029.87%)
Mutual labels:  email
Modoboa
Mail hosting made simple
Stars: ✭ 1,998 (+1197.4%)
Mutual labels:  email
Nanolist
mailing lists - the unix way
Stars: ✭ 153 (-0.65%)
Mutual labels:  email
Laravel Postmark
A Postmark adapter for Laravel
Stars: ✭ 143 (-7.14%)
Mutual labels:  email
Mattermail
Email Integration for Mattermost
Stars: ✭ 145 (-5.84%)
Mutual labels:  email
Notifme Sdk
A Node.js library to send all kinds of transactional notifications.
Stars: ✭ 1,854 (+1103.9%)
Mutual labels:  email
Gman
A ruby gem to check if the owner of a given email address or website is working for THE MAN (a.k.a verifies government domains).
Stars: ✭ 137 (-11.04%)
Mutual labels:  email
Karma
Find leaked emails with your passwords
Stars: ✭ 154 (+0%)
Mutual labels:  email
Django Mail Templated
Send emails using Django template system
Stars: ✭ 146 (-5.19%)
Mutual labels:  email
Papercut Smtp
Papercut SMTP -- The Simple Desktop Email Server
Stars: ✭ 2,094 (+1259.74%)
Mutual labels:  email
Django mail admin
The one and only django app to receive & send mail with templates and multiple configurations.
Stars: ✭ 140 (-9.09%)
Mutual labels:  email
Phoenix swoosh
Swoosh <3 Phoenix
Stars: ✭ 145 (-5.84%)
Mutual labels:  email
Mailbody
Create transactional email with a fluent interface (.net)
Stars: ✭ 151 (-1.95%)
Mutual labels:  email
Striker
Striker is an offensive information and vulnerability scanner.
Stars: ✭ 1,851 (+1101.95%)
Mutual labels:  email
Free Email Forwarding
The best free email forwarding for custom domains. Visit our website to get started (SMTP server)
Stars: ✭ 2,024 (+1214.29%)
Mutual labels:  email
H12y
The email service for when just "hey.com" isn't enough.
Stars: ✭ 139 (-9.74%)
Mutual labels:  email
Isotope Mail
Isotope Mail Client
Stars: ✭ 147 (-4.55%)
Mutual labels:  email
Cornerstone
Cornerstone is a WordPress starter theme based on the Zurb Foundation Responsive Framework. Cornerstone aims to provide a lightweight starter theme that is responsive and SEO friendly that web designers can build great looking websites on.
Stars: ✭ 154 (+0%)
Mutual labels:  foundation
Dart Basic Utils
A dart package for many helper methods fitting common situations
Stars: ✭ 153 (-0.65%)
Mutual labels:  email
0x4447 product s3 email
📫 A serverless email server on AWS using S3 and SES
Stars: ✭ 2,905 (+1786.36%)
Mutual labels:  email

Pinky

A PHP Transpiler for (Inky), the templating language made for the ZURB's Foundation for Email framework.

Installation

You can install this bundle using composer

composer require lorenzo/pinky

Usage and Examples

Basic Usage

<?php
use Pinky;

$transpiled = Pinky\transformFile('path/to/file.html');

// $transpiled is an instance of DOMDocument
echo $transpiled->saveHTML();

You can transpile strings directly:

<?php
use Pinky;

$transpiled = Pinky\transformString('<row>Contents</row>');
echo $transpiled->saveHTML();

And you can also transpile many files or strings in batch:

<?php
use Pinky;

$files = [$path1, $path2, $path3];

$transpiled = Pinky\transformManyFiles($files);
foreach ($transpiled as $result) {
    echo $result->saveHTML();
}

License

See the LICENSE file for license info (it's the MIT license).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].