PHP Mailer with responsive email templates engine.
-
Just Instantiate Mailer Object.
$mailer = new apzentral\ink\Mailer;
-
Then just uses
mail
method to send out email.$subject = 'Hello Mailer'; $from = 'apzentral@gmail.com'; $to = 'apzentral@gmail.com'; $body = '
This is test email.
'; $mailer->mail($subject, $from, $to, $body);
-
Basic Email Body,
Thank you for using Ink!!! <table class="twelve columns"> <tbody> <tr> <td> <h3>Hello World</h3> <p>This is the first email using Ink!</p> </td> <td class="expander"></td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table>
- Ink from Zurb: v 1.0.5