• Stars
    star
    155
  • Rank 232,335 (Top 5 %)
  • Language
    Elixir
  • License
    MIT License
  • Created over 6 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Preflight for your HTML emails - inline styling and plain text.

Premailex

Github CI hexdocs.pm hex.pm hex.pm downloads

Preflight for your HTML emails. Adds inline styling, and converts HTML to plain text.

Features

  • Add inline CSS properties from <style>
  • Add inline CSS properties from external <link> stylesheets
  • Transform HTML to plain text

Installation

def deps do
  [
    # ...
    {:premailex, "~> 0.3.0"},

    # Optional, but recommended for SSL validation with :httpc
    {:certifi, "~> 2.4"},
    {:ssl_verify_fun, "~> 1.1"},
    # ...
  ]
end

Run mix deps.get to install it.

Getting started

Transform an HTML string to text:

Premailex.to_text(html)

Add inline styles based on styles defined in <head>:

Premailex.to_inline_css(html)

Example with Swoosh

def welcome(user) do
  new()
  |> to({user.name, user.email})
  |> from({"Dr B Banner", "[email protected]"})
  |> subject("Hello, Avengers!")
  |> render_body("welcome.html", %{username: user.username})
  |> premail()
end

defp premail(email) do
  html = Premailex.to_inline_css(email.html_body)
  text = Premailex.to_text(email.html_body)

  email
  |> html_body(html)
  |> text_body(text)
end

Example with Bamboo

def welcome_email do
  new_email
  |> subject("Email subject")
  |> to("[email protected]")
  |> from("[email protected]")
  |> put_text_layout(false)
  |> render("email.html")
  |> premail()
end

defp premail(email) do
  html = Premailex.to_inline_css(email.html_body)
  text = Premailex.to_text(email.html_body)

  email
  |> html_body(html)
  |> text_body(text)
end

HTML parser

By default, premailex uses Floki to parse HTML, but you can exchange it for any HTML parser you prefer. Meeseeks is supported with the Premailex.HTMLParser.Meeseeks module. To use it, add the following to config.exs:

config :premailex, html_parser: Premailex.HTMLParser.Meeseeks

LICENSE

(The MIT License)

Copyright (c) 2017 Dan Schultzer & the Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

receipt-scanner

Receipt scanner extracts information from your PDF or image receipts - built in NodeJS
JavaScript
285
star
2

ex_oauth2_provider

Making OAuth 2 provider and authentication with http bearer as simple as possible for Elixir and Phoenix apps
Elixir
183
star
3

phoenix_oauth2_provider

Get an OAuth 2 provider running in your phoenix with controllers, views and models in just two minutes
Elixir
80
star
4

monit-graph

PHP graphing and logging tool for Monit, to graph and analyse process and/or server performance.
PHP
80
star
5

ansible-phoenix-build

Sample app with full build and deploy setup of a Phoenix app using ansible
Elixir
61
star
6

test_server

No fuzz ExUnit test server to mock third party services
Elixir
60
star
7

coherence_assent

UNMAINTAINED - Add multi provider login to your Coherence Phoenix website
Elixir
26
star
8

blazing-bookkeeper

Who has got time to read receipts? Let Blazing Bookkeeper blaze through all your receipts in no time.
JavaScript
25
star
9

elixir-terraform-aws-ecs-example

Sample for terraform IaC for elixir projects in ECS
HCL
25
star
10

idempotency_plug

Plug that makes POST and PATCH requests idempotent
Elixir
16
star
11

phoenix_ex_oauth2_provider_demo

Elixir
9
star
12

keep-the-chain

Keep the chain consistency tool. Tool to kill procrastination, focus on your daily goal, and keep being proactive. Built in Javascript (jQuery based), using local storage. Everything kept in your browser!
JavaScript
8
star
13

blazing-bookkeeper-server

JavaScript
2
star
14

peakium-documentation-viewer

Display your documentation easily and beautifully
CSS
1
star
15

fexr

Express.js API for foreign exchange rates from various national banks
JavaScript
1
star