{"id":3256,"date":"2026-08-04T19:58:01","date_gmt":"2026-08-04T19:58:01","guid":{"rendered":"https:\/\/convertnow.co\/resources\/?p=3256"},"modified":"2026-08-04T19:58:38","modified_gmt":"2026-08-04T19:58:38","slug":"send-email-with-ruby-on-rails","status":"publish","type":"post","link":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/","title":{"rendered":"How to Send Email with Ruby on Rails in 5 Minutes"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Rails has Action Mailer built in. It&#8217;s one of the most complete email systems in any framework. This guide shows you how to configure ConvertNow as your Action Mailer delivery method, create mailers, use ERB templates, and handle common production patterns.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Configure Action Mailer<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Add SMTP settings to config\/environments\/production.rb:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># config\/environments\/production.rb\nconfig.action_mailer.delivery_method = :smtp\nconfig.action_mailer.smtp_settings = {\n  address:              'out.convertnow.co',\n  port:                 465,\n  ssl:                  true,   # implicit SSL on port 465\n  user_name:            ENV&#91;'MAIL_USERNAME'],\n  password:             ENV&#91;'CONVERTNOW_API_KEY'],\n  authentication:       :plain,\n  enable_starttls_auto: false,  # not needed with implicit SSL\n}\nconfig.action_mailer.default_url_options = { host: 'myapp.com' }<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Set your environment variables:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MAIL_USERNAME=you@yourdomain.com\nCONVERTNOW_API_KEY=cn_live_YOUR_KEY<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Generate a mailer<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Use Rails&#8217; generator to create your first mailer:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rails generate mailer UserMailer welcome_email password_reset<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This creates app\/mailers\/user_mailer.rb and view templates in app\/views\/user_mailer\/:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># app\/mailers\/user_mailer.rb\nclass UserMailer &lt; ApplicationMailer\n  default from: 'hello@yourdomain.com'\n\n  def welcome_email\n    @user = params&#91;:user]\n    mail(\n      to: @user.email,\n      subject: \"Welcome to MyApp, #{@user.name}!\"\n    )\n  end\n\n  def password_reset\n    @user  = params&#91;:user]\n    @token = params&#91;:token]\n    mail(\n      to: @user.email,\n      subject: 'Reset your password'\n    )\n  end\nend<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Create ERB email templates<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Create app\/views\/user_mailer\/welcome_email.html.erb:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\n&lt;html>\n&lt;body>\n  &lt;h1>Hi &lt;%= @user.name %>!&lt;\/h1>\n  &lt;p>Your account is ready.&lt;\/p>\n  &lt;p>&lt;%= link_to 'Log in to your account', login_url %>&lt;\/p>\n&lt;\/body>\n&lt;\/html><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Create the plain-text version app\/views\/user_mailer\/welcome_email.text.erb:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Hi &lt;%= @user.name %>!\n\nYour account is ready.\n\nLog in here: &lt;%= login_url %><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Send the email from a controller<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code># app\/controllers\/users_controller.rb\nclass UsersController &lt; ApplicationController\n  def create\n    @user = User.new(user_params)\n\n    if @user.save\n      # Send welcome email\n      UserMailer.with(user: @user).welcome_email.deliver_now\n\n      render json: { message: 'Account created' }, status: :created\n    else\n      render json: { errors: @user.errors }, status: :unprocessable_entity\n    end\n  end\nend<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Queue emails with Active Job<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">deliver_now blocks the request thread. Use deliver_later in production so emails are processed in the background:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># In your controller or model callback:\nUserMailer.with(user: @user).welcome_email.deliver_later\n\n# With a delay:\nUserMailer.with(user: @user).welcome_email.deliver_later(wait: 5.minutes)\n\n# At a specific time:\nUserMailer.with(user: @user).welcome_email.deliver_later(wait_until: Date.tomorrow.noon)<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Configure Active Job to use Sidekiq in production (recommended):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># config\/application.rb\nconfig.active_job.queue_adapter = :sidekiq<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Send with attachments<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>def invoice_email\n  @user    = params&#91;:user]\n  @invoice = params&#91;:invoice]\n\n  attachments&#91;'invoice.pdf'] = {\n    mime_type: 'application\/pdf',\n    content:   File.read(Rails.root.join('storage', 'invoices', @invoice.filename))\n  }\n\n  mail(\n    to:      @user.email,\n    subject: \"Your invoice ##{@invoice.number}\"\n  )\nend<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Send to multiple recipients with CC and BCC<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>def team_notification\n  @team = params&#91;:team]\n\n  mail(\n    to:      @team.members.map(&amp;:email),\n    cc:      @team.manager.email,\n    bcc:     'archive@yourcompany.com',\n    subject: 'Team update'\n  )\nend<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Testing mailers in development<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In development, use the :test delivery method to capture emails without sending:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># config\/environments\/development.rb\nconfig.action_mailer.delivery_method = :test\n\n# Emails are available in ActionMailer::Base.deliveries array\nActionMailer::Base.deliveries.last<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Or use Letter Opener gem to open emails in a browser automatically:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Gemfile\ngem 'letter_opener', group: :development\n\n# config\/environments\/development.rb\nconfig.action_mailer.delivery_method = :letter_opener<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><br><strong>Start sending for free \u2014 convertnow.co \u2014 no credit card required<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Rails has Action Mailer built in. It&#8217;s one of the most complete email systems in any framework. This guide shows you how to configure ConvertNow as your Action Mailer delivery method, create mailers, use ERB templates, and handle common production patterns. Step 1: Configure Action Mailer Add SMTP settings to config\/environments\/production.rb: Set your environment variables: [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3258,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[6],"tags":[],"class_list":["post-3256","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-email-api"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Send Email with Ruby on Rails in 5 Minutes - ConvertNow Resources<\/title>\n<meta name=\"description\" content=\"Configure ConvertNow as your Rails Action Mailer SMTP provider. Create mailer classes, ERB templates, send welcome emails, and queue with Active Job. Complete guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Send Email with Ruby on Rails in 5 Minutes - ConvertNow Resources\" \/>\n<meta property=\"og:description\" content=\"Configure ConvertNow as your Rails Action Mailer SMTP provider. Create mailer classes, ERB templates, send welcome emails, and queue with Active Job. Complete guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/\" \/>\n<meta property=\"og:site_name\" content=\"ConvertNow Resources\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-04T19:58:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-04T19:58:38+00:00\" \/>\n<meta name=\"author\" content=\"ian\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ian\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/\"},\"author\":{\"name\":\"ian\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#\\\/schema\\\/person\\\/aae49f916f244e651bf4a5cf53567e24\"},\"headline\":\"How to Send Email with Ruby on Rails in 5 Minutes\",\"datePublished\":\"2026-08-04T19:58:01+00:00\",\"dateModified\":\"2026-08-04T19:58:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/\"},\"wordCount\":212,\"publisher\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-ruby-on-rails.avif\",\"articleSection\":[\"Email API\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/\",\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/\",\"name\":\"How to Send Email with Ruby on Rails in 5 Minutes - ConvertNow Resources\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-ruby-on-rails.avif\",\"datePublished\":\"2026-08-04T19:58:01+00:00\",\"dateModified\":\"2026-08-04T19:58:38+00:00\",\"description\":\"Configure ConvertNow as your Rails Action Mailer SMTP provider. Create mailer classes, ERB templates, send welcome emails, and queue with Active Job. Complete guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/#primaryimage\",\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-ruby-on-rails.avif\",\"contentUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-ruby-on-rails.avif\",\"width\":1920,\"height\":1080,\"caption\":\"send email with ruby on rails\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-ruby-on-rails\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Send Email with Ruby on Rails in 5 Minutes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#website\",\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/\",\"name\":\"Convert Now Resources | Email Marketing Guides | Newsletter Tips\",\"description\":\"ConvertNow is the email platform that works right out of the box. Sign up and start sending emails in 2 minutes or less, both for email api and email marketing needs.\",\"publisher\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#organization\",\"name\":\"Convert Now Resources\",\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/convertnow-new-logo-scaled.png\",\"contentUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/convertnow-new-logo-scaled.png\",\"width\":2560,\"height\":819,\"caption\":\"Convert Now Resources\"},\"image\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#\\\/schema\\\/person\\\/aae49f916f244e651bf4a5cf53567e24\",\"name\":\"ian\",\"sameAs\":[\"https:\\\/\\\/convertnow.co\\\/resources\"],\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/author\\\/ian\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Send Email with Ruby on Rails in 5 Minutes - ConvertNow Resources","description":"Configure ConvertNow as your Rails Action Mailer SMTP provider. Create mailer classes, ERB templates, send welcome emails, and queue with Active Job. Complete guide.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/","og_locale":"en_US","og_type":"article","og_title":"How to Send Email with Ruby on Rails in 5 Minutes - ConvertNow Resources","og_description":"Configure ConvertNow as your Rails Action Mailer SMTP provider. Create mailer classes, ERB templates, send welcome emails, and queue with Active Job. Complete guide.","og_url":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/","og_site_name":"ConvertNow Resources","article_published_time":"2026-08-04T19:58:01+00:00","article_modified_time":"2026-08-04T19:58:38+00:00","author":"ian","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ian","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/#article","isPartOf":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/"},"author":{"name":"ian","@id":"https:\/\/convertnow.co\/resources\/#\/schema\/person\/aae49f916f244e651bf4a5cf53567e24"},"headline":"How to Send Email with Ruby on Rails in 5 Minutes","datePublished":"2026-08-04T19:58:01+00:00","dateModified":"2026-08-04T19:58:38+00:00","mainEntityOfPage":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/"},"wordCount":212,"publisher":{"@id":"https:\/\/convertnow.co\/resources\/#organization"},"image":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/#primaryimage"},"thumbnailUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-ruby-on-rails.avif","articleSection":["Email API"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/","url":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/","name":"How to Send Email with Ruby on Rails in 5 Minutes - ConvertNow Resources","isPartOf":{"@id":"https:\/\/convertnow.co\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/#primaryimage"},"image":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/#primaryimage"},"thumbnailUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-ruby-on-rails.avif","datePublished":"2026-08-04T19:58:01+00:00","dateModified":"2026-08-04T19:58:38+00:00","description":"Configure ConvertNow as your Rails Action Mailer SMTP provider. Create mailer classes, ERB templates, send welcome emails, and queue with Active Job. Complete guide.","breadcrumb":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/#primaryimage","url":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-ruby-on-rails.avif","contentUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-ruby-on-rails.avif","width":1920,"height":1080,"caption":"send email with ruby on rails"},{"@type":"BreadcrumbList","@id":"https:\/\/convertnow.co\/resources\/send-email-with-ruby-on-rails\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/convertnow.co\/resources\/"},{"@type":"ListItem","position":2,"name":"How to Send Email with Ruby on Rails in 5 Minutes"}]},{"@type":"WebSite","@id":"https:\/\/convertnow.co\/resources\/#website","url":"https:\/\/convertnow.co\/resources\/","name":"Convert Now Resources | Email Marketing Guides | Newsletter Tips","description":"ConvertNow is the email platform that works right out of the box. Sign up and start sending emails in 2 minutes or less, both for email api and email marketing needs.","publisher":{"@id":"https:\/\/convertnow.co\/resources\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/convertnow.co\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/convertnow.co\/resources\/#organization","name":"Convert Now Resources","url":"https:\/\/convertnow.co\/resources\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/convertnow.co\/resources\/#\/schema\/logo\/image\/","url":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/07\/convertnow-new-logo-scaled.png","contentUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/07\/convertnow-new-logo-scaled.png","width":2560,"height":819,"caption":"Convert Now Resources"},"image":{"@id":"https:\/\/convertnow.co\/resources\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/convertnow.co\/resources\/#\/schema\/person\/aae49f916f244e651bf4a5cf53567e24","name":"ian","sameAs":["https:\/\/convertnow.co\/resources"],"url":"https:\/\/convertnow.co\/resources\/author\/ian\/"}]}},"modified_by":"ian","_links":{"self":[{"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/posts\/3256","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/comments?post=3256"}],"version-history":[{"count":1,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/posts\/3256\/revisions"}],"predecessor-version":[{"id":3257,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/posts\/3256\/revisions\/3257"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/media\/3258"}],"wp:attachment":[{"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/media?parent=3256"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/categories?post=3256"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/tags?post=3256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}