Download the PHP package jvitasek/nwsltr without Composer

On this page you can find all versions of the php package jvitasek/nwsltr. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package nwsltr

NWSLTR

Build Status License Open Source Software

This project contains a ready-made self-hosted mailing system written in PHP8, Nette Framework, Doctrine 2 and Vue.js

System Requirements

Installation

The ideal way of installing this project is via Composer:

Or directly clone this repository:

Once you have the project files, do the following:

  1. Create an empty MySQL database
  2. Create a new file config/test.neon and copy the contents of config/test.sample.neon in there

Now you have two options:

Automatic installation (recommended)

  1. Set the right permissions to the init script: $ chmod +x bin/init (UNIX only)
  2. Run $ bin/init which takes care of all the necessary configuration

Manual Installation

  1. Create directories log and temp in the root folder ($ mkdir log temp && chmod +x log temp)
  2. $ composer i
  3. $ php bin/console orm:clear-cache:metadata
  4. $ php bin/console o:s:u -f
  5. $ chmod +x bin/* (UNIX only)
  6. $ php bin/console doctrine:fixtures:load -n
  7. $ cd www/FrontModule && yarn && yarn build

Self-hosted Use

During the installation steps you loaded fixtures into the newly created database. These fixtures contain a sample account and a user. Once you finish the installation, you can access the website and log in using these credentials:

E-mail: [email protected]
Password: secret

With these credentials, you can access the system as an administrator. It is recommended to remove this account after creating a new one with a strong password.

Crontab setup

When you self-host this application, you need to set-up a cronjob to automatically send the planned mailings.

Alternatively, you can run this command anytime you need to send the newsletter

Tests

This package comes with some ready-made tests.

Acceptance Tests

For acceptence tests, Codeception was used. You can run these tests like this:

Unit Tests

Unit and feature tests are run with Nette Tester

Static Analysis

There are two static analysis tools to help with detecting and fixing errors in the code.

PHPStan

PHP_CodeSniffer with error detection

PHP_CodeSniffer with error fixing

Web Application Usage

All use-cases require logging in first. Next sections will assume you are already logged in to the system.

Creating recipient data

It is important to first create some recipient data, since you cannot send a mailing without a recipient group with at least one subscribed recipient.

  1. Access the Groups section in the left sidebar
  2. Create the Group you want to send the mailing to (e.g. Golf Players)
  3. Now you have 2 choices:
    1. Import recipients to the created group using an Excel file
    2. Add recipients manually in the Recipients section and indicate the created group in their Recipient Groups field

Creating mailings

Now that we have some recipient data in the system, we can go ahead and start building a new mailing campaign.

  1. Go to the Mailings section in the left sidebar and click on the Create Mailing button in the top-right corner
  2. In the editor, proceed as follows:
    1. Click on the pencil icon in the top-left corner of the screen and fill out the title, subject and the date of the mailing. Then indicate which Recipient Groups should receive the mailing.
    2. Click on the plus icon in the top-left corner of the screen and use the components to build your mailing template.
  3. (Optional) You can view the preview of your progress by clicking the Preview button in the top-right corner of the screen.
  4. Once you are finished building the template, you can click the Back button and return to the Mailing datagrid.
  5. Now you are ready to set the status of your newly created mailing to Ready. Based on the date that was set in the mailing editor, the system will automatically send the mailing once the date is reached (the crontab should ideally run every minute)

All versions of nwsltr with dependencies

PHP Build Version
Package Version
Requires php Version >= 8
nette/application Version ^3.1
nette/bootstrap Version ^3.1
nette/caching Version ^3.1
nette/database Version ^3.1
nette/di Version ^3.0
nette/finder Version ^2.5
nette/forms Version ^3.0
nette/http Version ^3.1
nette/mail Version ^3.1
nette/robot-loader Version ^3.3
nette/security Version ^3.1
nette/utils Version ^3.2
latte/latte Version ^2.9
tracy/tracy Version ^2.8
nettrine/orm Version ^0.8.1
nettrine/dbal Version ^0.7.0
nettrine/cache Version ^0.3.0
contributte/console Version ^0.9.0
nettrine/annotations Version ^0.7.0
nettrine/migrations Version ^0.7.0
nettrine/fixtures Version ^0.6.0
contributte/console-extra Version ^0.6.0
contributte/event-dispatcher Version ^0.8.0
contributte/event-dispatcher-extra Version ^0.8.0
contributte/monolog Version ^0.5.0
contributte/application Version ^0.5.0
contributte/redis Version ^0.3.0
ublaboo/api-router Version ^4.0
contributte/forms-bootstrap Version ^0.3.2
phpoffice/phpspreadsheet Version ^1.16
nettrine/extensions-beberlei Version ^0.2.0
jvitasek/dumpanddie Version ^1.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jvitasek/nwsltr contains the following files

Loading the files please wait ....