Skip to content
Snippets Groups Projects
Commit 8d96801f authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

update doc headers

parent 3297c3b4
No related branches found
No related tags found
No related merge requests found
<?php <?php
/**
* =======================================================================
*
* PHP EMAIL CATCHER
* Read emails sent by mail() and browse them
*
* 👤 Author: Axel Hahn, Institute for Medical Education, University of Bern
* 📄 Source: <https://git-repo.iml.unibe.ch/iml-open-source/php-emailcatcher>
* 📜 License: GNU GPL 3.0
*
* ----------------------------------------------------------------------
* 2024-10-08 v0.1 initial version
* =======================================================================
*/
class emailcatcher class emailcatcher
{ {
......
#!/usr/local/bin/php -q #!/usr/local/bin/php -q
<?php <?php
/**
* =======================================================================
*
* PHP EMAIL CATCHER
* Read emails sent by mail() and browse them
*
* 👤 Author: Axel Hahn, Institute for Medical Education, University of Bern
* 📄 Source: <https://git-repo.iml.unibe.ch/iml-open-source/php-emailcatcher>
* 📜 License: GNU GPL 3.0
*
* ----------------------------------------------------------------------
* 2024-10-08 v0.1 initial version
* =======================================================================
*/
require_once('classes/emailcatcher.class.php'); require_once('classes/emailcatcher.class.php');
......
...@@ -38,6 +38,19 @@ footer{ ...@@ -38,6 +38,19 @@ footer{
padding: 1em; padding: 1em;
opacity: 0.6; opacity: 0.6;
} }
h1{
background-color: #ebb;
background: linear-gradient(to right, #9be, #fcc);
margin: 0;
padding-left: 0.5em;
border-bottom: 4px solid rgba(0,0,0,0.05);
}
h1 a{
color:#424;
text-decoration: none;
}
pre{ pre{
background-color: #e8ecec; background-color: #e8ecec;
overflow: scroll; overflow: scroll;
...@@ -63,17 +76,7 @@ pre{ ...@@ -63,17 +76,7 @@ pre{
float: right; float: right;
} }
h1{
background-color: #ebb;
background: linear-gradient(to right, #9be, #fcc);
margin: 0;
padding-left: 0.5em;
border-bottom: 4px solid rgba(0,0,0,0.05);
}
h1 a{
color:#424;
text-decoration: none;
}
#messages{ #messages{
background-color: #f0f0f0; background-color: #f0f0f0;
border: 2px solid rgba(0,0,0,0.1); border: 2px solid rgba(0,0,0,0.1);
......
<?php <?php
/**
* =======================================================================
*
* PHP EMAIL CATCHER
* Read emails sent by mail() and browse them
*
* 👤 Author: Axel Hahn, Institute for Medical Education, University of Bern
* 📄 Source: <https://git-repo.iml.unibe.ch/iml-open-source/php-emailcatcher>
* 📜 License: GNU GPL 3.0
*
* ----------------------------------------------------------------------
* 2024-10-08 v0.1 initial version
* =======================================================================
*/
require_once('classes/emailcatcher.class.php'); require_once('classes/emailcatcher.class.php');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment