From 191ab6979f314133c3592c30a46435d5b605d907 Mon Sep 17 00:00:00 2001 From: Daniel Nitsikopoulos Date: Fri, 23 Feb 2024 08:37:38 +1100 Subject: [PATCH] Increase reminder posts to 15 --- Rakefile | 2 +- lib/adamantium/gently_remind_me.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index b5c0383..7f8cb75 100644 --- a/Rakefile +++ b/Rakefile @@ -94,7 +94,7 @@ namespace :blog do require "que" command = Adamantium::GentlyRemindMe.new - command.call(limit: 5) + command.call(limit: 15) end end diff --git a/lib/adamantium/gently_remind_me.rb b/lib/adamantium/gently_remind_me.rb index 56bd093..8a5e257 100644 --- a/lib/adamantium/gently_remind_me.rb +++ b/lib/adamantium/gently_remind_me.rb @@ -15,7 +15,7 @@ module Adamantium body_content = "" bookmarks_struct.each do |bm| - body_content += "#{bm[:name]} — #{bm[:source_url]} \n" + body_content += "🔗 #{bm[:name]} — #{bm[:source_url]} \n" body_content += " #{bm[:url]}\n" body_content += "\n" end @@ -34,7 +34,7 @@ module Adamantium Mail.delivery_method.settings[:password] = app_settings.smtp_password mail = Mail.new do - subject "A gentle reminder" + subject "A gentle reminder of some things to read 🌿" body body_content end