The most powerful free marketing app in the marketplace! Justuno is used by over 50,000 businesses around the world to build email lists and convert traffic.
This project introduces a vendor independent framework for deeply monitoring Drupal and all its projects / modules. It provides a 360 degree perspective on Drupal system health, being a critical piece for true enterprise Drupal platforms.
Our goal is to make monitoring an affordable and well established standard feature. These days, every website is somehow mission critical and the era of lazy-/unmonitored enterprise applications need to have an end.
With this vendor independent definition, we recommend every contrib module to provide own sensors that allow us to measure module health by default.
The project monitoring is no monitoring application on its own. It provides a lightweight sensor definition framework with a set of sensors that can be collected by any monitoring product. Integrations into the most popular Open Source products Nagios / Icinga (monitoring system) and Munin (trends monitoring grapher) will be available out of the box. Integrating additional monitoring products is easy.
Status
The base platform for sensor definition is production ready. Publishing of the integration into products and contrib modules will follow soon. Contact us if you need it NOW and want to support development.
There are no known major issues.
Fluent Mail provides an alternative to drupal_mail() with fewer convolutions and a more pleasant developer experience via a fluent interface. If you are not a developer or another module does not require it, you will derive no benefit from this module. It makes no changes on its own. To make use of the module call fluent_mail() in your code instead of drupal_mail() when you wish to send mail. How is this an improvement? Let's look at an example of sending a simple test message with drupal_mail():
<?php
/**
* Implements hook_mail().
*/
function mymodule_mail($key, &$message, $params) {
$message['subject'] = t('Test message');
$message['body'][] = t('This is a test message.');
}
/**
* Send a test email.
*/
function mymodule_send_test_mail() {
drupal_mail('mymodule', 'test_message', 'me@example.com', language_default(), array(), 'admin@example.com', TRUE);
}
?>
And the same example using fluent_mail():
<?php
/**
* Send a test email.
*/
function mymodule_send_test_mail() {
fluent_mail('mymodule', 'test_message')
->setTo('me@example.com')
->setFrom('admin@example.com')
->setSubject(t('Test message'))
->setBody(t('This is a test message.'))
->send();
}
?>
Commerce Yotpo is Drupal Commerce module that integrates the Yotpo free plug-and-play product reviews solution for eCommerce sites into your Drupal Commerce shop.
Yotpo helps store owners generate tons of product reviews and makes it easy for them to leverage these reviews to increase traffic and sales. Yotpo is serving over 20,000 store owners across 15 different eCommerce platforms in 35 different languages.
Interested in Yotpo?
Sign up on the Marketplace, get started for free! If you opt for paying services, signing up through the Marketplace will get you 30% off!
About Yotpo
Yotpo is a free plug-and-play product reviews solution for eCommerce sites. Yotpo helps store owners generate tons of product reviews and makes it easy for them to leverage these reviews to increase traffic and sales.
Yotpo is serving over 20,000 store owners across 15 different eCommerce platforms in 35 different languages.