Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
5af0ab9
Added source code
Jan 13, 2017
02974ff
Added Part2 source code
Jan 13, 2017
b9971f4
Added validation
Jan 15, 2017
bf9f6d1
Added user login script
Jan 16, 2017
774cbce
Added source code
Jan 17, 2017
87ab039
Added new SQL file
Jan 17, 2017
02b6fd5
Added source code
Jan 17, 2017
929e634
Added source code
Jan 19, 2017
9854598
Added source code
Jan 20, 2017
001688b
Added source code
Jan 21, 2017
841b222
Added source code
Jan 21, 2017
b254640
Added source code
Jan 21, 2017
d18eaeb
Added source code
Jan 22, 2017
e297554
Added source code
Jan 23, 2017
9a9be60
Added source code
Jan 24, 2017
6627f0d
Added source code
Jan 25, 2017
d52f999
Added source code
Jan 28, 2017
192ca7f
Added source code
Jan 29, 2017
7b83a75
Added source code
Jan 30, 2017
37b7b87
Added source code
Feb 2, 2017
19ece0b
Added source code
Feb 3, 2017
e1384e5
Added source code
Feb 4, 2017
29a8065
Added source code
Feb 5, 2017
9f5c3bf
Added source code
Feb 5, 2017
a2f994b
Added source code
Feb 7, 2017
91263ff
Added source code
Feb 9, 2017
8640906
Added source code
Feb 12, 2017
3e7acd6
Added source code
Feb 13, 2017
d57e567
Added source code
Feb 14, 2017
a941747
Added source code
Feb 16, 2017
9712059
Added source code
Feb 17, 2017
51c24b2
Added source code
Feb 18, 2017
bc667ba
Added source code
Feb 21, 2017
3de27e5
Removed accidental source code
Feb 21, 2017
3185876
Added source code
Feb 21, 2017
2d799ce
Added source code
Feb 23, 2017
ee2913f
Added source code
Feb 26, 2017
896c8c7
Added source code
Mar 7, 2017
6298827
Added source code
Apr 4, 2017
a78b5df
Added source code.
Jun 27, 2017
27b8d72
Added source code.
Jul 3, 2017
f791ebb
Added source code.
Jul 8, 2017
57c78b9
Added source code.
Jul 18, 2017
7dd34f0
Added source code.
Jul 18, 2017
7d91db1
Added source code.
Jul 23, 2017
f5962bb
Added source code
howCodeORG Sep 7, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
504 changes: 504 additions & 0 deletions PHPMailer/LICENSE

Large diffs are not rendered by default.

49 changes: 49 additions & 0 deletions PHPMailer/PHPMailerAutoload.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?php
/**
* PHPMailer SPL autoloader.
* PHP Version 5
* @package PHPMailer
* @link https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project
* @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk>
* @author Jim Jagielski (jimjag) <jimjag@gmail.com>
* @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>
* @author Brent R. Matzelle (original founder)
* @copyright 2012 - 2014 Marcus Bointon
* @copyright 2010 - 2012 Jim Jagielski
* @copyright 2004 - 2009 Andy Prevost
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
* @note This program is distributed in the hope that it will be useful - WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*/

/**
* PHPMailer SPL autoloader.
* @param string $classname The name of the class to load
*/
function PHPMailerAutoload($classname)
{
//Can't use __DIR__ as it's only in PHP 5.3+
$filename = dirname(__FILE__).DIRECTORY_SEPARATOR.'class.'.strtolower($classname).'.php';
if (is_readable($filename)) {
require $filename;
}
}

if (version_compare(PHP_VERSION, '5.1.2', '>=')) {
//SPL autoloading was introduced in PHP 5.1.2
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
spl_autoload_register('PHPMailerAutoload', true, true);
} else {
spl_autoload_register('PHPMailerAutoload');
}
} else {
/**
* Fall back to traditional autoload for old PHP versions
* @param string $classname The name of the class to load
*/
function __autoload($classname)
{
PHPMailerAutoload($classname);
}
}
1 change: 1 addition & 0 deletions PHPMailer/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5.2.22
Loading