All Projects → ChrisRAoW → Mautic Rss To Email Bundle

ChrisRAoW / Mautic Rss To Email Bundle

Mautic plugin to send emails from RSS

Projects that are alternatives of or similar to Mautic Rss To Email Bundle

Atoma
Atom, RSS and JSON feed parser for Python 3
Stars: ✭ 67 (-2.9%)
Mutual labels:  rss, feed
Discord feedbot
Moved to https://gitlab.com/ffreiheit/discord_feedbot
Stars: ✭ 67 (-2.9%)
Mutual labels:  rss, feed
Python Feedgen
Python module to generate ATOM feeds, RSS feeds and Podcasts.
Stars: ✭ 501 (+626.09%)
Mutual labels:  rss, feed
Front End Rss
📙 根据 RSS 抓取最新前端技术文章,来源:前端早读课、前端大全、前端之巅、淘宝前端、张鑫旭博客、凹凸实验室等
Stars: ✭ 418 (+505.8%)
Mutual labels:  rss, feed
Winds
A Beautiful Open Source RSS & Podcast App Powered by Getstream.io
Stars: ✭ 8,530 (+12262.32%)
Mutual labels:  rss, feed
Picofeed
PHP library to parse and write RSS/Atom feeds
Stars: ✭ 439 (+536.23%)
Mutual labels:  rss, feed
News
📰 RSS/Atom feed reader
Stars: ✭ 524 (+659.42%)
Mutual labels:  rss, feed
Api.rss
RSS as RESTful. This service allows you to transform RSS feed into an awesome API.
Stars: ✭ 340 (+392.75%)
Mutual labels:  rss, feed
Miniflux Legacy
Minimalist RSS reader (version 1.x)
Stars: ✭ 897 (+1200%)
Mutual labels:  rss, feed
Liferea
Liferea (Linux Feed Reader), a news reader for GTK/GNOME
Stars: ✭ 612 (+786.96%)
Mutual labels:  rss, feed
Hexo Generator Feed
Feed generator for Hexo.
Stars: ✭ 400 (+479.71%)
Mutual labels:  rss, feed
Huginn
Create agents that monitor and act on your behalf. Your agents are standing by!
Stars: ✭ 33,694 (+48731.88%)
Mutual labels:  rss, feed
Reader
Free and open source feeds reader, including all major Google Reader features
Stars: ✭ 347 (+402.9%)
Mutual labels:  rss, feed
Jquery Rss
An easy-to-use rss plugin for jquery with templating.
Stars: ✭ 443 (+542.03%)
Mutual labels:  rss, feed
Podcastgenerator
Open Source Podcast Publishing Solution since 2006
Stars: ✭ 344 (+398.55%)
Mutual labels:  rss, feed
Feed
A RSS, Atom and JSON Feed generator for Node.js, making content syndication simple and intuitive! 🚀
Stars: ✭ 523 (+657.97%)
Mutual labels:  rss, feed
Freshrss
A free, self-hostable aggregator…
Stars: ✭ 3,793 (+5397.1%)
Mutual labels:  rss, feed
Elixir Scrape
Scrape any website, article or RSS/Atom Feed with ease!
Stars: ✭ 306 (+343.48%)
Mutual labels:  rss, feed
Laravel Feed
Easily generate RSS feeds
Stars: ✭ 573 (+730.43%)
Mutual labels:  rss, feed
Jong
🐍 💡 JOplin Notes Generator - project replaced by https://github.com/foxmask/yeoboseyo
Stars: ✭ 15 (-78.26%)
Mutual labels:  rss, feed

Mautic RSS to E-mail

Description

The Mautic RssToEmailBundle is a Mautic plugin that allows you to generate e-mails from a RSS-feed.

Purpose

Send out an e-mail with for example to latest posts of your blog.

Compatibility

This plugin has been tested with v2.14.2 of Mautic.

Features

  • Set the number of posts you want to display
  • Create a custom template for the items in the feed
  • Use images from the feed
  • Format dates
  • Reverse view

Installation

  1. Download the plugin from github
  2. Move / Upload folder to the plugins directory. Name the folder MauticRssToEmailBundle
  3. In the Mautic GUI, go to the gear and then to Plugins.
  4. Click on the "Install/Upgrade Plugins" button
  5. You should now see the "Rss To Email" in your list of plugins.

Usage

Use the "code mode" slot of the froala e-mail editor. In the content of the slot set to following content:

{feed url="<<FEEDURL>>"}
    {feeditems count="3"}
        <h3>{feeditem:title}</h3>
        <p><small>{feeditem:date format="d-m-Y H:i"}</small></p>
        <p>{feeditem:description}</p>
        <p><img src="{feeditem:image}"></p>
    {/feeditems}
{/feed}

This should give a basic setup to start with.

The following tags can be used in the {feed} block:

{feedinfo:title}

Returns: title of the feed

{feedinfo:url}

Returns: url of the feed

{feedinfo:description}

Returns: description of the feed

The following tags can be used in the {feeditems} block:

Optional param:

  • reverse {feeditems count="3" reverse="1"} - returns posts in reversed view

{feeditem:title}

Returns: title of the post

{feeditem:link}

Returns: link to the post

{feeditem:content}

Returns: summarized content (desciption), when description is not available it will return the full content

{feeditem:content_full}

Returns: full content of the post

{feeditem:content_text}

Returns: summarized content (desciption), when description is not available it will return the full content. Tags are stripped.

{feeditem:content_full_text}

Returns: full content of the post stripped of tags

{feeditem:description}

Returns: summarized content (desciption) of the post

{feeditem:date}

Optional param: format {feeditem:date format="d-m-Y H:i"} Returns: summarized content (desciption) of the post

{feeditem:author}

Returns: author name of the post

{feeditem:categories}

Returns: comma seperated list of the categories

{feeditem:image}

Returns: url of the image. Will check the enclosere and media tags of the xml.

Icon

Icons made by Freepik from www.flaticon.com
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].