Products

TrueTimer Logo TrueTimer

Keep track of billable time and switch between clients quickly with a simple reliable app that lets you add labels and notes with ease.




Learn More
TrueTimer graphic

TrueMail Logo

Email marketing you control. Create campaigns, manage contacts, build emails with drag-and-drop tools, and send reliably through Amazon SES — all from within your own website software.




Learn More
TrueMail dashboard

TrueAdmin Logo

Build powerful admin software on a modern PHP framework with enterprise-grade security, modular architecture, role-based access control, and a customizable dashboard.




Learn More
TrueAdmin dashboard
For developers

TrueFramework

The small, fast PHP framework that makes building websites faster and simpler that other PHP Frameworks. Routing, views, css/js management, optional controllers, auth, SEO, queue, scheduler, http client, forms, email, and more.




Read the Docs
app/routes.php
// One route. One handler. One template.
$App->router->get('/hello/:name', function($request) use ($App) {
    $App->view->render('hello.phtml', [
        'name' => $request->route->name,
    ]);
});