Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Commit

Permalink
Githubbing - add license, readme, delete unwanted files
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Drabek committed Oct 29, 2013
1 parent c4f2189 commit 2155e61
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 17 deletions.
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

24 changes: 24 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Copyright (c) 2011, Jan Drábek
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
47 changes: 47 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
MailPanel
=========

Panel for Nette DebugBar. Instead of sending all e-mails are stored into session from which they can be viewed in debugger bar. Supports plaintexts and HTML e-mail, multiple recipients etc.

Demo
----

![](http://i49.tinypic.com/54doav.png)

Startup
-------

* Unpack archive/directory into directory which is indexed by RobotLoader
* Register different mailer in config.neon (or in something like config.development.neon)

```
services:
nette.mailer:
class: JanDrabek\MailPanel\SessionDumpMailer
```

* Add extension into DebugBar

```
nette:
debugger:
bar: [JanDrabek\MailPanel\MailPanel]
# Or when you register multiple extensions
# bar:
# - JanDrabek\MailPanel\MailPanel
```

Usage
-----

All mails instantiated through:
```
$container->nette->createMail();
```
will be sent by SessionDumpMailer into session and will be available in DebugBar.

Potential problems
------------------

Due to the method of populating mails into the iframe element with javascript, there can be some problems. When it happen, please, send me an e-mail or open an issue. Thanks :)

7 changes: 0 additions & 7 deletions nbproject/project.properties

This file was deleted.

9 changes: 0 additions & 9 deletions nbproject/project.xml

This file was deleted.

0 comments on commit 2155e61

Please sign in to comment.