Use a third-party CSS or JS Framework, a self-hosted service like a CRM, or a third-party service with the site.

Fluent Mail

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

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.

Why Yotpo?

Webform Submission Reference

Webform Submission Reference creates a webform component that points at submissions from a target webform.

Instagram Feeds

Connected Instagram accounts Listing page

This module imports Instagram images into Drupal as Media entities from particular Instagram accounts using Cron job.

Drupal 8 / Drupal 9 / Drupal 10

This version is under development. Testing, feedback and any help with development are more than welcome.

The module provides a new content entity "Instagram account", which stores Instagram long-lived access_token and is used in hook_cron() to import Instagram posts with help of Instagram Basic Display API into Media types, which use "Media Entity Instagram" source.

Requirements

  • Drupal 8.5+ | Drupal 9 | Drupal 10
  • Facebook app with "Instagram Basic Display" product configured.
  • Token - optional but strongly recommended

Migration from Drupal 7 version is unsupported!

qb_static_lists

This module makes the static lists used by Quickbooks (via QBWC, QBXML, etc) available to programmers.

Pages

Subscribe with RSS Subscribe to RSS - Integrations