forked from kodus/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56b7477
commit b3c5fb6
Showing
9 changed files
with
542 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Force line-endings to LF (checking out with CRLF on Windows would cause tests to fail!) | ||
*.php text eol=lf | ||
*.txt text eol=lf | ||
# Force line-endings to CRLF (checking out with LF on Linux would cause tests to fail!) | ||
*.php text eol=crlf | ||
*.txt text eol=crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
namespace Kodus\Mail; | ||
|
||
class SMTPConnector | ||
{ | ||
public function __construct() | ||
{ | ||
// TODO | ||
} | ||
|
||
/** | ||
* @return resource SMTP connection handle | ||
*/ | ||
public function connect() | ||
{ | ||
// TODO | ||
} | ||
} |
Oops, something went wrong.