querymail / querymail
Query Mail is a simple and powerful tools that generate fancy emails for reporting, statistics or monitoring your data.
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Language:CSS
Type:project
Requires
- php: ^5.4 || ^7.0
- ext-gd: *
- ext-pdo_mysql: *
- ext-pdo_sqlite: *
- amenadiel/jpgraph: ^3.6
- composer/installers: ~1.0
- fuel/core: ~1.8.0
- fuel/email: ~1.8.0
- fuelphp/upload: ~2.0.6
- michelf/php-markdown: ^1.4.0
- monolog/monolog: ^1.5
- phpseclib/phpseclib: ^2.0.0
Requires (Dev)
- fuel/docs: 1.8.*
- squizlabs/php_codesniffer: ^2.6
This package is not auto-updated.
Last update: 2025-03-30 03:52:39 UTC
README
Query Mail
Description
Query Mail is a simple and powerful tool that generate fancy emails for reporting, statistics or monitoring your data.
You can define your own SQL queries to generate KPI you need and then encapsulate them into a single email.
An example of email with 2 KPIs and a sample layout is provided into the project
Query Mail is written in PHP based on a popular framework called FuelPHP
The project use a SQLite preconfigured database so there is minimal dependencies.
Installation with docker
In order to run this project properly, the easiest way is to use the provided docker installation.
Edit the docker/ssmtp.conf
file and set your mail server credentials.
First, you have to install dependencies with docker-compose run --rm php composer install --no-dev -o
command.
Then simply run docker-compose up -d
at the root path of the project.
This script will create a docker container for PHP and run a nginx webserver.
Add the following line in your /etc/hosts
file :
127.0.0.1 querymail
Then you can directly access Query Mail via http://querymail
Installation via composer
composer create-project querymail/querymail
Other installation
If you prefer you can setup your own server infrastructure. You just need to know that this code will work only for PHP5.4+
Scheduling
Query mail doesn't provide any scheduling feature. In order to call Query Mail webservice at specific interval, I recommend to use a simple linux crontab
Query mail will show for each of your email the URL you can call using Curl
Configuration
Databases
Configure the list of your databases into the file fuel/app/config/db.php
.
Add the following line of code for each database you need to add :
'myconnection' => array(
'type' => 'pdo',
'connection' => array(
'dsn' => 'mysql:host=myhost;dbname=mydb',
'username' => 'user',
'password' => 'password',
),
'identifier' => '`',
'table_prefix' => '',
'charset' => 'utf8',
'enable_cache' => true,
'profiling' => false,
),
Each connection must have its own alias and will automaticly appear in the web interface when creating a new KPI
Email template layout
A sample html layout is provided into the project. You can create your own layout and put them into fuel/app/views/emails/
Keep in mind that the template must be written with the old HTML4 style because of popular webmail restriction like Gmail, Yahoo, etc.
Project
To organize your emails, you can setup your own project list. Projects list is saved into SQLite in the QMAIL_PROJECT table. As you will see, in the basic configuration, you have only one project called My Awesome Project
Email driver
If you use a specific driver to send email, you can configure it into the FuelPHP framework. You will find more information in the official docummentation