summaryrefslogtreecommitdiffstats
path: root/system/libraries/Email.php
AgeCommit message (Collapse)AuthorFilesLines
2012-03-02#1080 - Check if the SMTP connection and authentication were successfull.Diogo Osório1-2/+5
2012-03-01Some other minor improvements to the Email libraryAndrey Andreev1-81/+67
2012-03-01Switch ANDs to &&, || to OR in the Email classAndrey Andreev1-14/+13
2012-03-01Remove access lines and fix method description blocks in the Email classAndrey Andreev1-84/+25
2012-03-01Switch private properties in the Email class to protectedAndrey Andreev1-24/+25
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1
2011-12-22Update with suggestions from philsturgeonAndrey Andreev1-5/+5
2011-12-22Improve the Email libraryAndrey Andreev1-308/+172
2011-11-23Switch disposition set to ternary operationtrit1-6/+1
2011-11-23More style tweakstrit1-0/+3
2011-11-23Changed attachment definition to allow for blank disposition defaulting to ↵trit1-2/+4
attachment - should make things easier for the user who uses a custom name
2011-11-23Added a couple of style tweaks and a note about function change in changelogtrit1-7/+2
2011-11-23Added space after CI_Email for coding standardtrit1-1/+1
2011-11-23Switched order of arguments to maintain compatibilitytrit1-1/+1
2011-11-23Changed the names around againtrit1-2/+2
2011-11-23Changed filepath back to filenametrit1-7/+7
2011-11-23Fixed variable name causing problemtrit1-1/+1
2011-11-23Added custom file name to attach(), updated _build_message to handle ittrit1-10/+16
2011-11-22Merge master (2.1.0) and fixed conflicts.Phil Sturgeon1-7/+3
2011-11-13Added TLS and SSL support to Email library. Fixes issue #171Radu Potop1-1/+19
2011-10-27Crypt isn't set and it causes extensive script time when specifying a custom ↵Sean Fisher1-5/+5
SMTP server
2011-10-27get_magic_quotes_gpc() to be executed only if PHP version is 5.3 or lowerAndrey Andreev1-3/+7
2011-10-27I wasn't following the CI code style guide.diegorivera1-3/+3
2011-10-27Update system/libraries/Email.phpdiegorivera1-1/+9
2011-10-20adding new license file (OSL 3.0) and updating readme to ReSTDerek Jones1-4/+16
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change
2011-10-20get_magic_quotes_gpc() to be executed only if PHP version is 5.3 or lowerAndrey Andreev1-3/+7
2011-10-19I wasn't following the CI code style guide.diegorivera1-3/+3
2011-10-19Update system/libraries/Email.phpdiegorivera1-1/+9
2011-09-29style edit, print error if crypto failsRadu Potop1-1/+11
2011-09-28Added TLS and SSL support to Email library. Fixes issue #171Radu Potop1-1/+19
2011-09-15Update: Incorrect comments for clean method in CI_Email classBo-Yi Wu1-0/+1
2011-08-21Changed set_wordwrap() to cast the parameter as a boolean instead of using a ↵Dan Horrigan1-2/+2
ternary. Also fixed the doc block.
2011-08-21Changed set_alt_message() to cast the message a string to prevent possible ↵Dan Horrigan1-1/+1
issues when sending NULL or FALSE.
2011-08-21Removed unneeded code in CI_Email's set_alt_message.Frank de Jonge1-1/+1
2011-08-10Fixed a bug where Email library attachments with a . in the name would using ↵Phil Sturgeon1-1/+1
invalid MIME-types.
2011-07-20Updated Email class to use protected instead of private: ↵Phil Sturgeon1-59/+59
http://codeigniter.uservoice.com/forums/40508-codeigniter-reactor/suggestions/2056113-private-functions-suck
2011-07-02backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵Derek Jones1-23/+23
broke the Typography class's string replacements, for instance
2011-04-25Fixed double-space typo.Razican1-23/+23
2011-04-08Deals with language errors after codeigniter-reactor commit r2307:c43c6dea56fbpatwork1-22/+22
2011-02-14Whitespace cleanup in libraries/Pascal Kriete1-6/+6
2011-01-27Automated merge with https://bitbucket.org/ellislab/codeigniterPhil Sturgeon1-80/+83
2011-01-13Added access scope to Email library and allow method chaining from ↵Phil Sturgeon1-61/+64
$this->email->initialize().
2011-01-05Hey look, it's 2011Greg Aker1-1/+1
2010-12-29Changed email library to allow setting different user-agent. Fixes #286Eric Barnes1-19/+19
2010-11-10Altered Email class to allow for method chaining. (Thanks Phil Sturgeon)Greg Aker1-0/+24
2010-11-10Changing all class constructors to __construct()Greg Aker1-1/+1
2010-11-10Updating PHP requirements in files 5.1.6Greg Aker1-1/+1
2010-11-09Altered our mail() params to be inline with PHP documentation, fixes mailing ↵Brandon Jones1-64/+56
on some hosts
2010-10-04Cleanup of stray spaces and tabsBarry Mieny1-62/+62
2010-09-01fixes issue #109 where cc and bcc recipients were not reset when using the ↵Derek Jones1-0/+2
clear() method in the Email lib