Skip to content

Commit

Permalink
Fix sandbox, update docs, update version.
Browse files Browse the repository at this point in the history
  • Loading branch information
dim-s committed Apr 16, 2015
1 parent fd147ff commit afa9280
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
def javaVersion = '1.6';
def projectVersion = '0.6.3';
def projectVersion = '0.6.4';

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion docs
Submodule docs updated from 41be4f to 5cc90a
14 changes: 1 addition & 13 deletions sandbox/src/JPHP-INF/.bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
<?php

use php\mail\Email;
use php\mail\EmailBackend;

$backend = new EmailBackend();
$backend->setAuthentication('[email protected]', 'myfghjfghj1');

$backend->hostName = 'smtp.gmail.com';
$backend->sslSmtpPort = 465;
$backend->sslOnConnect = true;

$email = new Email();
$email->setTo(['[email protected]', '[email protected]']);
$email->send($backend);
echo "Hello World!";

0 comments on commit afa9280

Please sign in to comment.