Skip to content

rameshrr99/uk.co.vedaconsulting.mosaico

 
 

Repository files navigation

uk.co.vedaconsulting.mosaico

This extension integrates a responsive email template editor, Mosaico, with CiviCRM.

Requirements

  • CiviCRM v5.0+
  • PHP-ImageMagick - recommended.
  • FlexMailer v1.0+

Using with Scheduled reminders, personal messages etc

An experimental extension is available here: https://github.com/civicrm/org.civicrm.mosaicomsgtpl

Installation

A CiviCRM extensions folder (this normally defaults to files/civicrm/ext)

Option 1: Download via Web

The official download URLs for Mosaico and related extensions are published on the CiviCRM.org Extension Directory. Download the latest releases of these extensions:

  1. Shoreditch Theme
  2. FlexMailer
  3. Mosaico CiviCRM Integration

TIP: civicrm.org downloads are intended for normal installations, and github.com downloads are intended for development. Downloads on civicrm.org and github.com are often the same -- but not always.

Option 2: Download via CLI

This option requires command line tool cv.

To download the current alpha/beta versions of Mosaico and its dependencies, run this one command:

cv dl --dev flexmailer shoreditch mosaico

Alternatively, you can download the latest nightly:

cv dl --dev flexmailer shoreditch
cv dl uk.co.vedaconsulting.mosaico@https://download.civicrm.org/extension/uk.co.vedaconsulting.mosaico/latest/uk.co.vedaconsulting.mosaico-latest.zip

Option 3: Download via Git (preferred for development)

This option requires several command-line tools:

Once these are installed, you should:

## Navigate to your extension directory, e.g.
cd sites/default/files/civicrm/ext

## Download the extensions
git clone https://github.com/civicrm/org.civicrm.flexmailer
git clone https://github.com/civicrm/org.civicrm.shoreditch
git clone https://github.com/veda-consulting/uk.co.vedaconsulting.mosaico

## Download additional dependencies
cd uk.co.vedaconsulting.mosaico
./bin/setup.sh -D

Getting started (Usage)

If you haven't used Mosaico before, consult the the demo and tutorial materials from http://mosaico.io/index.html.

To send a new mailing, simply navigate to "Mailings => New Mailing". The CiviMail-Mosaico UI should appear.

Optionally, you may design reusable templates by navigating to "Mailings => Mosaico Templates".

When composing a new mailing with Mosaico, the screen may be configured as a three-step wizard or as a single-step form. To choose a layout, navigate to "Administer => CiviMail => Mosaico Settings".

If you would like to compose mailings with the old CiviMail screen, navigate to "Mailings => New Mailing (Traditional)".

Having issues with this extension?

Please make sure you have followed installation instructions.

Open issues on github with:

  • screenshot of failure with any possible errors in firebug or js console
  • any related logs or backtrace from civicrm
  • tell us what version of CiviCRM and extension, you using.
  • tell us the browser you are using (name and version) and test at least a second browser to tell us if this happen in both or only one (tell us the details about the second browser too).

Development

Setup.sh

The script bin/setup.sh handles various build activities:

## Download dependencies
./bin/setup.sh -D

## Regenerate DAOs
./bin/setup.sh -g

## Build zip archive
./bin/setup.sh -z

Styling Changes

We use Gulp and Sass for styling and handle different running tasks. Firstly, you should install node packages using npm package manager:

npm install

Styling changes should go into sass directory and compiled to CSS using the following command:

gulp sass

Once you are done making your changes, please use BackstopJS (see TESTING.MD to check for any possible visual regression issues

Migration

When moving CiviCRM to a new domain, you must update the template paths in the CiviCRM database with a MySQL query such as:

UPDATE civicrm_mosaico_template SET metadata = replace(metadata, 'old-domain.org', 'new-domain.org');

Patching Mosaico

This extensions ships with a patched version of Mosaico. The patches are maintained as a fork in https://github.com/civicrm/mosaico using Twigflow (Rebase).

a9274b21272407c1b4974762a886646871050cb4

Testing

See TESTING.md

Publication

Whenever a change is merged or pushed to uk.co.vedaconsulting.mosaico, a bot automatically builds a new zip archive and publishes uk.co.vedaconsulting.mosaico-latest.zip.

The build/publish process has a few properties:

  • It combines uk.co.vedaconsulting.mosaico, civicrm/mosaico, and any other runtime dependencies into one zip file.
  • The version number is determined by reading info.xml (<version>) and appending the current Unix timestamp.
    • Example: If the version is declared as 1.0.beta1, then it will be published as 1.0.beta1.1478151288.
  • Three files are published:
    • The zip archive
    • The new info.xml file
    • A JSON document describing the build.
  • An alias is provided under the folder latest.

The bot does not publish the new version to civicrm.org. To do this, take the new info.xml file and manually upload it. Since civicrm.org provides a directory of past and current versions, be sure to specify the download-URL for a specific version number (e.g. 1.0.beta1.1478151288) rather than an alias (latest).

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 54.5%
  • JavaScript 21.2%
  • HTML 11.7%
  • CSS 7.1%
  • Smarty 3.1%
  • Shell 1.9%
  • TSQL 0.5%