Skip to content

Instantly share code, notes, and snippets.

View adriano66's full-sized avatar
:octocat:

Adrian adriano66

:octocat:
  • Future Processing
  • Gliwice, Poland
View GitHub Profile
@adriano66
adriano66 / mailq-parser.php
Last active July 16, 2021 09:45 — forked from dullgiulio/mailq-parser.php
Interactive mailq
<?php
class EmailData {
private $id;
private $recipients = [];
private $sender;
private $size;
private $date;
private $failed;
@adriano66
adriano66 / iCal.php
Last active February 23, 2020 16:37 — forked from edewaal97/iCal.php
iCal PHP Parser
<?php
// SOURCE: https://gist.github.com/seebz/c00a38d9520e035a6a8c
class iCal {
/**
* @var string
*/
public $title;
/**