This extension integrates Mosaico a responsive email template editor, with CiviCRM.
- Initial Blog Post
- Beta Blog Post
- Initial Video
- v1.0 Stable Release
- v2.0 Plans
- v2.0 and Styling Blog Post
-
CiviCRM v4.7.16+ / (unofficial) CiviCRM v4.6.26+ with backports patch #9555 applied
-
PHP-ImageMagick
A CiviCRM extensions folder (In new sites since CiviCRM v4.7.0, this defaults to files/civicrm/ext
. For older systems, see the wiki.)
This option does not require any extra server side dependency. To intall using this option, simply download the latest versions of all three extensions below and install them in order:
This option requires command line tool cv
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
Tip: If you're using v4.6.x with backports, then
cv dl
will require an extra argument: "--filter-ver=4.7.16
". This enables it to download the latest extensions intended for v4.7.x (even if they aren't officially compatible with v4.6.x).
This option requires commad line tool git
other requirement by setup.sh:
Alternatively:
## 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
cd uk.co.vedaconsulting.mosaico
./bin/setup.sh -D
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, the default layout is a simple three-step wizard. To
change the layout, you can update the setting mosaico_layout
to
bootstrap-wizard
or bootstrap-single
, e.g.
cv api setting.create mosaico_layout=bootstrap-wizard
The traditional and Mosaico versions of the New Mailing page can be accessed with these URL's:
civicrm/a/#/mailing/new/traditional
(new mailing with template_type=traditional)civicrm/a/#/mailing/new/mosaico
(new mailing with template_type=mosaico)civicrm/a/#/mailing/new
(new mailing with the default template type; depends on the mix of extensions)
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).
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
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
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).
See TESTING.md
Whenever a change is merged or pushed to uk.co.vedaconsulting.mosaico
, a bot automatically builds a new zip
archive
and publishes to http://dist.civicrm.org/extension/uk.co.vedaconsulting.mosaico/.
The build/publish process has a few properties:
- It combines
uk.co.vedaconsulting.mosaico
,civicrm/mosaic
, and any other runtime dependencies into onezip
file. - The version number is determined by reading
info.xml
(<version>
) and appending the current Unix timestamp.- Example: If the
version
is declared as1.0.beta1
, then it will be published as1.0.beta1.1478151288
.
- Example: If the
- Three files are published:
- The
zip
archive - The new
info.xml
file - A JSON document describing the build.
- The
- 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
).