diff --git a/app/views/suggestions_mailer/new_suggestion_received.html.erb b/app/views/suggestions_mailer/new_suggestion_received.html.erb new file mode 100644 index 0000000000000000000000000000000000000000..a0a08db307cc65caa4a8ddbabb192937113db04c --- /dev/null +++ b/app/views/suggestions_mailer/new_suggestion_received.html.erb @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <style>/* Email styles need to be inline */</style> + </head> + <body> + <h2>Nome: <%= @suggestion.name %></h1> + <h2>Link: <%= @suggestion.link %></h1> + <h2>Descrição: <%= @suggestion.description %></h1> + </body> +</html> diff --git a/app/views/suggestions_mailer/suggestion_updated.html.erb b/app/views/suggestions_mailer/suggestion_updated.html.erb new file mode 100644 index 0000000000000000000000000000000000000000..a0a08db307cc65caa4a8ddbabb192937113db04c --- /dev/null +++ b/app/views/suggestions_mailer/suggestion_updated.html.erb @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <style>/* Email styles need to be inline */</style> + </head> + <body> + <h2>Nome: <%= @suggestion.name %></h1> + <h2>Link: <%= @suggestion.link %></h1> + <h2>Descrição: <%= @suggestion.description %></h1> + </body> +</html>