Skip to content

Instantly share code, notes, and snippets.

@honda0510
Created June 29, 2013 12:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save honda0510/bdfa75baefb72b8a0fa7 to your computer and use it in GitHub Desktop.
<?php
$email = Email::forge();
$email->to('メールアドレス');
//$email->subject("test"); // パターン1
//$email->subject("test\n\n\n\n"); // パターン2
//$email->subject("\n"); // パターン3
//$email->subject(null); // パターン4
$email->body('test');
$email->send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment