Thanks to visit codestin.com
Credit goes to github.com

Skip to content

tinyCampaign is a simple and lightweight newsletter system built on a nice Bootstrap and the Liten framework.

License

Notifications You must be signed in to change notification settings

nomadicjosh/tinycampaign

Repository files navigation

tinyCampaign

tinyCampaign is a simple system for creating and unlimited number of campaigns or newsletters.

System Requirement

  • Minimum of PHP version 5.6+
  • Minimum of MySQL 5.6+
  • Apache / Nginx

Features

  • Send using SMTP only
  • Create unlimited number of email lists
  • Email Queue
  • Start Queue, Pause Queue, Resume Queue
  • Send Test Email
  • Import subscribers
  • Export Subscribers
  • Subscriber's Preference Page
  • Public Archives
  • Toggle Double opt-in
  • Custom success and error url's
  • Reports
  • and more . . .

Rewrite

Apache

RewriteEngine On
 
# Some hosts may require you to use the `RewriteBase` directive.
# If you need to use the `RewriteBase` directive, it should be the
# absolute physical path to the directory that contains this htaccess file.
#
# RewriteBase /
 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

Nginx

Root Directory

location / {
    try_files $uri /index.php$is_args$args;
}

Subdirectory

location /newsletter {
    try_files $uri /newsletter/index.php$is_args$args;
}

Resources.