{"id":3245,"date":"2026-08-02T13:35:13","date_gmt":"2026-08-02T13:35:13","guid":{"rendered":"https:\/\/convertnow.co\/resources\/?p=3245"},"modified":"2026-08-02T13:35:13","modified_gmt":"2026-08-02T13:35:13","slug":"send-email-with-php","status":"publish","type":"post","link":"https:\/\/convertnow.co\/resources\/send-email-with-php\/","title":{"rendered":"How to Send Email with PHP in 5 Minutes"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Sending transactional email from PHP \u2014 user registrations, password resets, order confirmations \u2014 is straightforward once you have a reliable sending infrastructure. This guide shows you how to send email using the ConvertNow API with PHP&#8217;s built-in cURL, and with PHPMailer for SMTP.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What you need<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u2022 PHP 7.4 or above<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u2022 cURL extension enabled (enabled by default on most hosting)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u2022 A free ConvertNow account \u2014 convertnow.co<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Get your API key<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Sign up at convertnow.co, go to Email API, click + New Key, and store the key in an environment variable or your config:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ Never hardcode your API key in source code\n\/\/ Use environment variables or a config file outside your web root\n$apiKey = getenv('CONVERTNOW_API_KEY');\n\/\/ Or from a .env file using vlucas\/phpdotenv:\n\/\/ $dotenv = Dotenv\\Dotenv::createImmutable(__DIR__);\n\/\/ $dotenv->load();\n\/\/ $apiKey = $_ENV&#91;'CONVERTNOW_API_KEY'];<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Send your first email with cURL<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\nfunction sendEmail(array $payload): array {\n    $apiKey = getenv('CONVERTNOW_API_KEY');\n\n    $ch = curl_init('https:\/\/api.convertnow.co\/v1\/email\/send');\n    curl_setopt_array($ch, &#91;\n        CURLOPT_RETURNTRANSFER => true,\n        CURLOPT_POST           => true,\n        CURLOPT_HTTPHEADER     => &#91;\n            'Authorization: Bearer ' . $apiKey,\n            'Content-Type: application\/json',\n        ],\n        CURLOPT_POSTFIELDS => json_encode($payload),\n    ]);\n\n    $response = curl_exec($ch);\n    $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);\n    curl_close($ch);\n\n    $data = json_decode($response, true);\n\n    if ($httpCode !== 200) {\n        throw new RuntimeException('Email send failed: ' . ($data&#91;'error'] ?? 'Unknown error'));\n    }\n\n    return $data;\n}\n\n\/\/ Send a basic email\n$result = sendEmail(&#91;\n    'to'      => 'user@example.com',\n    'from'    => 'hello@yourdomain.com',\n    'subject' => 'Hello from PHP',\n    'html'    => '&lt;h1>It works!&lt;\/h1>&lt;p>Your first email from PHP.&lt;\/p>',\n    'text'    => 'It works! Your first email from PHP.',\n]);\n\necho $result&#91;'status']; \/\/ sent<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Common email patterns<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Welcome email on user registration<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ In your registration handler:\nsendEmail(&#91;\n    'to'      => $userEmail,\n    'subject' => 'Welcome to MyApp!',\n    'html'    => sprintf(\n        '&lt;h1>Hi %s!&lt;\/h1>&lt;p>Your account is ready. &lt;a href=\"%s\">Log in here&lt;\/a>.&lt;\/p>',\n        htmlspecialchars($userName),\n        $loginUrl\n    ),\n    'tags'    => &#91;'welcome', 'onboarding'],\n]);<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Password reset<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sendEmail(&#91;\n    'to'      => $userEmail,\n    'subject' => 'Reset your password',\n    'html'    => sprintf(\n        '&lt;p>Click &lt;a href=\"%s\">here&lt;\/a> to reset your password. Link expires in 1 hour.&lt;\/p>',\n        $resetUrl\n    ),\n    'tags'    => &#91;'password-reset'],\n]);<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Send with CC, BCC, and attachment<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>$pdf = base64_encode(file_get_contents('\/path\/to\/invoice.pdf'));\n\nsendEmail(&#91;\n    'to'      => 'customer@example.com',\n    'cc'      => 'accounts@yourcompany.com',\n    'bcc'     => &#91;'archive@yourcompany.com'],\n    'subject' => 'Your invoice #INV-001',\n    'html'    => '&lt;p>Please find your invoice attached.&lt;\/p>',\n    'attachments' => &#91;&#91;\n        'filename'     => 'invoice.pdf',\n        'content'      => $pdf,\n        'content_type' => 'application\/pdf',\n    ]],\n]);<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">PHPMailer: use ConvertNow as SMTP relay<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you prefer SMTP or are using PHPMailer in an existing application:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>use PHPMailer\\PHPMailer\\PHPMailer;\nuse PHPMailer\\PHPMailer\\Exception;\n\n$mail = new PHPMailer(true);\n\ntry {\n    $mail->isSMTP();\n    $mail->Host       = 'out.convertnow.co';\n    $mail->SMTPAuth   = true;\n    $mail->Username   = 'you@yourdomain.com';\n    $mail->Password   = getenv('CONVERTNOW_API_KEY');\n    $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMIME; \/\/ implicit SSL\n    $mail->Port       = 465;\n\n    $mail->setFrom('you@yourdomain.com', 'My App');\n    $mail->addAddress('user@example.com');\n    $mail->Subject = 'Hello via PHPMailer';\n    $mail->isHTML(true);\n    $mail->Body    = '&lt;h1>It works!&lt;\/h1>';\n    $mail->AltBody = 'It works!';\n\n    $mail->send();\n    echo 'Email sent';\n} catch (Exception $e) {\n    echo 'Error: ' . $mail->ErrorInfo;\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Laravel: configure ConvertNow as your mail driver<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In Laravel, add ConvertNow to your config\/mail.php mailers array and update your .env:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># .env\nMAIL_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=\"My App\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then use Laravel&#8217;s Mail facade or Mailable classes as normal:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>use Illuminate\\Support\\Facades\\Mail;\n\nMail::to($user->email)->send(new WelcomeMail($user));\n\/\/ Or using raw to() syntax:\nMail::raw('Your account is ready.', function ($message) use ($user) {\n    $message->to($user->email)->subject('Welcome!');\n});<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Why not use PHP&#8217;s built-in mail() function?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">PHP&#8217;s built-in mail() sends directly from your server. Without proper SPF, DKIM, and DMARC configuration, these emails almost always land in spam. ConvertNow&#8217;s dedicated infrastructure handles all authentication automatically \u2014 you get inbox placement without the ops overhead.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Start sending for free \u2014 convertnow.co \u2014 no credit card required<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sending transactional email from PHP \u2014 user registrations, password resets, order confirmations \u2014 is straightforward once you have a reliable sending infrastructure. This guide shows you how to send email using the ConvertNow API with PHP&#8217;s built-in cURL, and with PHPMailer for SMTP. What you need \u2022 PHP 7.4 or above \u2022 cURL extension enabled [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3247,"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-3245","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 PHP in 5 Minutes - ConvertNow Resources<\/title>\n<meta name=\"description\" content=\"Send transactional email from PHP using the ConvertNow Email API. Working code examples with cURL, PHPMailer, SwiftMailer, and Laravel. No SDK required.\" \/>\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-php\/\" \/>\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 PHP in 5 Minutes - ConvertNow Resources\" \/>\n<meta property=\"og:description\" content=\"Send transactional email from PHP using the ConvertNow Email API. Working code examples with cURL, PHPMailer, SwiftMailer, and Laravel. No SDK required.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/convertnow.co\/resources\/send-email-with-php\/\" \/>\n<meta property=\"og:site_name\" content=\"ConvertNow Resources\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-02T13:35:13+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-php\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/\"},\"author\":{\"name\":\"ian\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#\\\/schema\\\/person\\\/aae49f916f244e651bf4a5cf53567e24\"},\"headline\":\"How to Send Email with PHP in 5 Minutes\",\"datePublished\":\"2026-08-02T13:35:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/\"},\"wordCount\":231,\"publisher\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-php.avif\",\"articleSection\":[\"Email API\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/\",\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/\",\"name\":\"How to Send Email with PHP in 5 Minutes - ConvertNow Resources\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-php.avif\",\"datePublished\":\"2026-08-02T13:35:13+00:00\",\"description\":\"Send transactional email from PHP using the ConvertNow Email API. Working code examples with cURL, PHPMailer, SwiftMailer, and Laravel. No SDK required.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/#primaryimage\",\"url\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-php.avif\",\"contentUrl\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/send-email-with-php.avif\",\"width\":1920,\"height\":1080,\"caption\":\"send email with php\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/send-email-with-php\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/convertnow.co\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Send Email with PHP 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 PHP in 5 Minutes - ConvertNow Resources","description":"Send transactional email from PHP using the ConvertNow Email API. Working code examples with cURL, PHPMailer, SwiftMailer, and Laravel. No SDK required.","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-php\/","og_locale":"en_US","og_type":"article","og_title":"How to Send Email with PHP in 5 Minutes - ConvertNow Resources","og_description":"Send transactional email from PHP using the ConvertNow Email API. Working code examples with cURL, PHPMailer, SwiftMailer, and Laravel. No SDK required.","og_url":"https:\/\/convertnow.co\/resources\/send-email-with-php\/","og_site_name":"ConvertNow Resources","article_published_time":"2026-08-02T13:35:13+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-php\/#article","isPartOf":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-php\/"},"author":{"name":"ian","@id":"https:\/\/convertnow.co\/resources\/#\/schema\/person\/aae49f916f244e651bf4a5cf53567e24"},"headline":"How to Send Email with PHP in 5 Minutes","datePublished":"2026-08-02T13:35:13+00:00","mainEntityOfPage":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-php\/"},"wordCount":231,"publisher":{"@id":"https:\/\/convertnow.co\/resources\/#organization"},"image":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-php\/#primaryimage"},"thumbnailUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-php.avif","articleSection":["Email API"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/convertnow.co\/resources\/send-email-with-php\/","url":"https:\/\/convertnow.co\/resources\/send-email-with-php\/","name":"How to Send Email with PHP in 5 Minutes - ConvertNow Resources","isPartOf":{"@id":"https:\/\/convertnow.co\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-php\/#primaryimage"},"image":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-php\/#primaryimage"},"thumbnailUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-php.avif","datePublished":"2026-08-02T13:35:13+00:00","description":"Send transactional email from PHP using the ConvertNow Email API. Working code examples with cURL, PHPMailer, SwiftMailer, and Laravel. No SDK required.","breadcrumb":{"@id":"https:\/\/convertnow.co\/resources\/send-email-with-php\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/convertnow.co\/resources\/send-email-with-php\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/convertnow.co\/resources\/send-email-with-php\/#primaryimage","url":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-php.avif","contentUrl":"https:\/\/convertnow.co\/resources\/wp-content\/uploads\/2026\/08\/send-email-with-php.avif","width":1920,"height":1080,"caption":"send email with php"},{"@type":"BreadcrumbList","@id":"https:\/\/convertnow.co\/resources\/send-email-with-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/convertnow.co\/resources\/"},{"@type":"ListItem","position":2,"name":"How to Send Email with PHP 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\/3245","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=3245"}],"version-history":[{"count":1,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/posts\/3245\/revisions"}],"predecessor-version":[{"id":3246,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/posts\/3245\/revisions\/3246"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/media\/3247"}],"wp:attachment":[{"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/media?parent=3245"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/categories?post=3245"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/convertnow.co\/resources\/wp-json\/wp\/v2\/tags?post=3245"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}