{"id":3252,"date":"2026-08-02T13:54:09","date_gmt":"2026-08-02T13:54:09","guid":{"rendered":"https:\/\/convertnow.co\/resources\/?p=3252"},"modified":"2026-08-02T13:54:10","modified_gmt":"2026-08-02T13:54:10","slug":"send-email-with-laravel","status":"publish","type":"post","link":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/","title":{"rendered":"How to Send Email with Laravel in 5 Minutes"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Laravel&#8217;s built-in mail system is one of the most elegant in any framework. This guide shows you how to configure ConvertNow as your Laravel mail driver, send your first email, and use Mailables and Blade templates for production-ready transactional email.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Configure your .env<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Add these lines to your .env file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MAIL_MAILER=smtp\nMAIL_HOST=out.convertnow.co\nMAIL_PORT=465\nMAIL_ENCRYPTION=ssl\nMAIL_USERNAME=you@yourdomain.com\nMAIL_PASSWORD=cn_live_YOUR_KEY\nMAIL_FROM_ADDRESS=you@yourdomain.com\nMAIL_FROM_NAME=\"${APP_NAME}\"<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Send your first email<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The quickest way is using the Mail facade with a closure:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>use Illuminate\\Support\\Facades\\Mail;\n\nMail::raw('Hello from Laravel!', function ($message) {\n    $message\n        ->to('user@example.com')\n        ->subject('Hello from Laravel');\n});\n\n\/\/ Or with HTML:\nMail::html('&lt;h1>Hello from Laravel!&lt;\/h1>', function ($message) {\n    $message\n        ->to('user@example.com')\n        ->subject('Hello from Laravel');\n});<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Create a Mailable class<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Mailables are the Laravel-idiomatic way to structure emails. Generate one with Artisan:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan make:mail WelcomeMail<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This creates app\/Mail\/WelcomeMail.php. Update it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\nnamespace App\\Mail;\n\nuse App\\Models\\User;\nuse Illuminate\\Bus\\Queueable;\nuse Illuminate\\Mail\\Mailable;\nuse Illuminate\\Mail\\Mailables\\Content;\nuse Illuminate\\Mail\\Mailables\\Envelope;\nuse Illuminate\\Queue\\SerializesModels;\n\nclass WelcomeMail extends Mailable\n{\n    use Queueable, SerializesModels;\n\n    public function __construct(public User $user) {}\n\n    public function envelope(): Envelope\n    {\n        return new Envelope(\n            subject: \"Welcome to MyApp, {$this->user->name}!\",\n        );\n    }\n\n    public function content(): Content\n    {\n        return new Content(\n            view: 'emails.welcome',\n        );\n    }\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Create a Blade email template<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Create resources\/views\/emails\/welcome.blade.php:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\n&lt;html>\n&lt;head>\n    &lt;meta charset=\"utf-8\">\n&lt;\/head>\n&lt;body>\n    &lt;h1>Hi {{ $user->name }}!&lt;\/h1>\n    &lt;p>Your account is ready.&lt;\/p>\n    &lt;p>\n        &lt;a href=\"{{ url('\/login') }}\">\n            Log in to your account\n        &lt;\/a>\n    &lt;\/p>\n    &lt;p>If you did not create an account, no action is required.&lt;\/p>\n&lt;\/body>\n&lt;\/html><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Send the Mailable from a controller<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\nnamespace App\\Http\\Controllers;\n\nuse App\\Mail\\WelcomeMail;\nuse App\\Models\\User;\nuse Illuminate\\Http\\Request;\nuse Illuminate\\Support\\Facades\\Mail;\n\nclass AuthController extends Controller\n{\n    public function register(Request $request)\n    {\n        $user = User::create($request->validated());\n\n        \/\/ Send welcome email\n        Mail::to($user->email)->send(new WelcomeMail($user));\n\n        return response()->json(&#91;'message' => 'Account created'], 201);\n    }\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Queue emails for background processing<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">For production, queue emails so they don&#8217;t slow down HTTP responses. Make your Mailable queueable:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>use Illuminate\\Contracts\\Queue\\ShouldQueue;\n\nclass WelcomeMail extends Mailable implements ShouldQueue\n{\n    \/\/ ... same as before\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><br>Then dispatch it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ This queues the email instead of sending synchronously\nMail::to($user->email)->queue(new WelcomeMail($user));<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Send with CC, BCC, and attachments<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>Mail::to('customer@example.com')\n    ->cc('accounts@yourcompany.com')\n    ->bcc('archive@yourcompany.com')\n    ->send(new InvoiceMail($invoice));<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">In your Mailable, attach a file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>public function attachments(): array\n{\n    return &#91;\n        Attachment::fromPath(storage_path('app\/invoices\/' . $this->invoice->filename))\n            ->as('invoice.pdf')\n            ->withMime('application\/pdf'),\n    ];\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Testing emails in development<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Use Laravel&#8217;s log mail driver during development to write emails to your log file instead of sending:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># .env (development)\nMAIL_MAILER=log<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><br>Or use Mailpit (a local email catching tool):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MAIL_MAILER=smtp\nMAIL_HOST=127.0.0.1\nMAIL_PORT=1025\nMAIL_ENCRYPTION=null<\/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>Laravel&#8217;s built-in mail system is one of the most elegant in any framework. This guide shows you how to configure ConvertNow as your Laravel mail driver, send your first email, and use Mailables and Blade templates for production-ready transactional email. Step 1: Configure your .env Add these lines to your .env file: Step 2: Send [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3254,"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-3252","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.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Send Email with Laravel in 5 Minutes - ConvertNow Resources<\/title>\n<meta name=\"description\" content=\"Configure ConvertNow as your Laravel mail driver. Send email with Mail facade, Mailable classes, and Blade templates. Working .env configuration and code examples.\" \/>\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-laravel\/\" \/>\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 Laravel in 5 Minutes - ConvertNow Resources\" \/>\n<meta property=\"og:description\" content=\"Configure ConvertNow as your Laravel mail driver. Send email with Mail facade, Mailable classes, and Blade templates. Working .env configuration and code examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/\" \/>\n<meta property=\"og:site_name\" content=\"ConvertNow Resources\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-02T13:54:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-02T13:54:10+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=\"2 minutes\" \/>\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-laravel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/\"},\"author\":{\"name\":\"ian\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#\\\/schema\\\/person\\\/aae49f916f244e651bf4a5cf53567e24\"},\"headline\":\"How to Send Email with Laravel in 5 Minutes\",\"datePublished\":\"2026-08-02T13:54:09+00:00\",\"dateModified\":\"2026-08-02T13:54:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/\"},\"wordCount\":199,\"publisher\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-laravel.avif\",\"articleSection\":[\"Email API\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/\",\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/\",\"name\":\"How to Send Email with Laravel in 5 Minutes - ConvertNow Resources\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-laravel.avif\",\"datePublished\":\"2026-08-02T13:54:09+00:00\",\"dateModified\":\"2026-08-02T13:54:10+00:00\",\"description\":\"Configure ConvertNow as your Laravel mail driver. Send email with Mail facade, Mailable classes, and Blade templates. Working .env configuration and code examples.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/#primaryimage\",\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-laravel.avif\",\"contentUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-laravel.avif\",\"width\":1920,\"height\":1080,\"caption\":\"send email with laravel\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-laravel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Send Email with Laravel 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 Laravel in 5 Minutes - ConvertNow Resources","description":"Configure ConvertNow as your Laravel mail driver. Send email with Mail facade, Mailable classes, and Blade templates. Working .env configuration and code examples.","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-laravel\/","og_locale":"en_US","og_type":"article","og_title":"How to Send Email with Laravel in 5 Minutes - ConvertNow Resources","og_description":"Configure ConvertNow as your Laravel mail driver. Send email with Mail facade, Mailable classes, and Blade templates. Working .env configuration and code examples.","og_url":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/","og_site_name":"ConvertNow Resources","article_published_time":"2026-08-02T13:54:09+00:00","article_modified_time":"2026-08-02T13:54:10+00:00","author":"ian","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ian","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/#article","isPartOf":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/"},"author":{"name":"ian","@id":"https:\/\/convertnow.co\/resources\/#\/schema\/person\/aae49f916f244e651bf4a5cf53567e24"},"headline":"How to Send Email with Laravel in 5 Minutes","datePublished":"2026-08-02T13:54:09+00:00","dateModified":"2026-08-02T13:54:10+00:00","mainEntityOfPage":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/"},"wordCount":199,"publisher":{"@id":"https:\/\/convertnow.co\/resources\/#organization"},"image":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/#primaryimage"},"thumbnailUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-laravel.avif","articleSection":["Email API"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/","url":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/","name":"How to Send Email with Laravel in 5 Minutes - ConvertNow Resources","isPartOf":{"@id":"https:\/\/convertnow.co\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/#primaryimage"},"image":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/#primaryimage"},"thumbnailUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-laravel.avif","datePublished":"2026-08-02T13:54:09+00:00","dateModified":"2026-08-02T13:54:10+00:00","description":"Configure ConvertNow as your Laravel mail driver. Send email with Mail facade, Mailable classes, and Blade templates. Working .env configuration and code examples.","breadcrumb":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/convertnow.co\/resources\/send-email-with-laravel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/#primaryimage","url":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-laravel.avif","contentUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-laravel.avif","width":1920,"height":1080,"caption":"send email with laravel"},{"@type":"BreadcrumbList","@id":"https:\/\/convertnow.co\/resources\/send-email-with-laravel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/convertnow.co\/resources\/"},{"@type":"ListItem","position":2,"name":"How to Send Email with Laravel 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\/3252","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=3252"}],"version-history":[{"count":1,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/posts\/3252\/revisions"}],"predecessor-version":[{"id":3253,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/posts\/3252\/revisions\/3253"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/media\/3254"}],"wp:attachment":[{"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/media?parent=3252"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/categories?post=3252"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/tags?post=3252"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}