{"id":19332,"date":"2021-01-12T02:34:35","date_gmt":"2021-01-12T10:34:35","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19332"},"modified":"2021-01-18T06:10:39","modified_gmt":"2021-01-18T14:10:39","slug":"html-email-link","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/html-email-link\/","title":{"rendered":"HTML mailto Links: A Step-By-Step Guide"},"content":{"rendered":"\n<p><em>The HTML mailto link opens a visitor&#8217;s default email client when linked. This type of link makes it quick for a user to contact you over email. You can specify a default subject, CC, BCC, and body with a mailto link.<\/em><\/p>\n\n\n\n<p>Sometimes when creating a website for a client, they will want you to include their business information on the site. This often involves adding a way to contact the business on the site.<\/p>\n\n\n\n<p>Most times, in this modern day and age, this will include an email address or phone number of some sort. In this article, we\u2019ll take a look at how to link an email in your HTML. This will let you make sure that the client\u2019s default email client opens with the business email as the addressee.  <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML mailto Links<\/h2>\n\n\n\n<p>A HTML mailto link makes it easy for a user to contact you over email. When a mailto link is clicked, the user&#8217;s email client opens. A new email is created which is addressed to the email in the mailto link.<\/p>\n\n\n\n<p>The most common way to link an email in HTML is by using an anchor tag that has a <em>href<\/em> attribute.<\/p>\n\n\n\n<p>The href will point to the email you would like to send the email to.&nbsp;<\/p>\n\n\n\n<p>Here is the syntax for a basic mailto link:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;a href=&quot;mailto:insertemailhere@xyz.com&quot;&gt;Email&lt;\/a&gt;<\/pre><\/div>\n\n\n\n<p>This link will open up a new, blank email, addressed to you, in the users&#8217; email client. But, we can add more information to our mailto link.<\/p>\n\n\n\n<p>The mailto link accepts the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>A user&#8217;s email.<\/li><li>Subject field.<\/li><li>CC emails.<\/li><li>BCC emails.<\/li><li>Default body text.<\/li><\/ul>\n\n\n\n<p>Let&#8217;s take a deeper look at how to use an HTML mailto link.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">mailto HTML Example<\/h2>\n\n\n\n<p>We are building a &#8220;Contact Us&#8221; page on our website, and we want a link that makes it easy for users to email us. We can implement this link using the HTML mailto email links feature:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;html&gt;  \n  &lt;body&gt;\n    &lt;div&gt;\n       &lt;h3&gt;Contact Us!&lt;\/h3&gt;\n       &lt;label&gt;Email:&lt;\/label&gt;\n       &lt;a href=&quot;mailto: insertemailhere@xyz.com&quot;   target=&quot;_blank&quot;&gt;insertemailhere@xyz.com&lt;\/a&gt;\n    &lt;\/div&gt;\n  &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>If you would like to add a subject to the email, that can be done as well!&nbsp;<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;html&gt;  \n  &lt;body&gt;\n    &lt;div&gt;\n       &lt;h3&gt;Contact Us!&lt;\/h3&gt;\n       &lt;label&gt;Email:&lt;\/label&gt;\n          &lt;a href=&quot;mailto: insertemailhere@xyz.com?subject=Mail from xyz.com&quot; target=&quot;_blank&quot;&gt;insertemailhere@xyz.com&lt;\/a&gt;\n    &lt;\/div&gt;\n  &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>Our mailto link is enclosed in the <a href=\"https:\/\/careerkarma.com\/blog\/basic-html-tags\/\">HTML &lt;a&gt; tag<\/a> above. We can break up the mailto string into three parts: <\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>The href keyword: <em>mailto:<\/em><\/li><li>The email: <a href=\"mailto:insertemailhere@xyz.com\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><em>insertemailhere@xyz.com<\/em><\/a><\/li><li>The subject: <em>?subject=Mail from xyz.com<\/em><\/li><\/ol>\n\n\n\n<p>We want to add a bit more information to our email. To do so, we&#8217;re going to use some more of the mailto link attributes we discussed in the last section.<\/p>\n\n\n\n<p>In the below example, we&#8217;re going to set a target email, a CC, a BCC, a subject, and a body:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;html&gt;  \n  &lt;body&gt;\n      &lt;h3&gt;Contact Us!&lt;\/h3&gt;\n\t&lt;div&gt;\n          &lt;label&gt;Email:&lt;\/label&gt;\n          &lt;a href=&quot;mailto:insertemailhere@xyz.com?cc=insertanotheremail@xyz.com&amp;bcc=insertsecretemail@xyz.com&amp;subject=Mail from xyz.com&amp;body=Dear xyz.com&quot; target=&quot;_blank&quot;&gt;insertemailhere@xyz.com&lt;\/a&gt;\n       &lt;\/div&gt;\n  &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>The string is broken up as so: <\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>The href keyword: <em>mailto:<\/em><\/li><li>The email: <a href=\"mailto:insertemailhere@xyz.com\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><em>insertemailhere@xyz.com<\/em><\/a><\/li><li>The cc: <em>?cc=<\/em><a href=\"mailto:insertanotheremail@xyz.com\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><em>insertanotheremail@xyz.com<\/em><\/a> \u2013 you can add multiple CC\u2019s as comma separated values<\/li><li>The bcc: <em>&amp;bcc=<\/em><a href=\"mailto:insertanotheremail@xyz.com\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><em>insertsecretemail@xyz.com<\/em><\/a> \u2013 you can add multiple BCC\u2019s as comma separated values here as well.&nbsp;<\/li><li>The subject: <em>&amp;subject=Mail from xyz.com<\/em><\/li><li>The body: <em>&amp;body=Body-goes-here<\/em><\/li><\/ol>\n\n\n\n<p>An email with all this information is created and opened in the users&#8217; default mail client.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The HTML mailto link automatically opens a users&#8217; email client when it is clicked. You can populate a mailto link with information like a subject line, body, or CC. A mailto link must include the address to which the email should be sent.<\/p>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/\"><\/a>We took a look at how to add a mailto href to an anchor tag. This link means a user can click on an email on a website and it will open their default email client with prefilled data. If you\u2019re comfortable, I would encourage you how to do the same thing but for phone numbers or Google Map directions!<\/p>\n\n\n\n<p>Do you want to learn more about HTML? We&#8217;ve got a <a href=\"https:\/\/careerkarma.com\/blog\/learn-html\/\">How to Learn HTML<\/a> guide for you. This guide contains expert advice on how to learn HTML. You&#8217;ll also find a list of top learning resources to help you advance your knowledge.<\/p>\n","protected":false},"excerpt":{"rendered":"The HTML mailto link opens a visitor's default email client when linked. This type of link makes it quick for a user to contact you over email. You can specify a default subject, CC, BCC, and body with a mailto link. Sometimes when creating a website for a client, they will want you to include&hellip;","protected":false},"author":77,"featured_media":18049,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[],"class_list":{"0":"post-19332","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-html"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"HTML","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>HTML mailto Links: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"When a user clicks on an email address on a website, the expected behavior is for the default email client to open with the email address in the To: field. This tutorial will show you some of the things you can do to customize your email for your clients.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/html-email-link\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML mailto Links: A Step-By-Step Guide\" \/>\n<meta property=\"og:description\" content=\"When a user clicks on an email address on a website, the expected behavior is for the default email client to open with the email address in the To: field. This tutorial will show you some of the things you can do to customize your email for your clients.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/html-email-link\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-12T10:34:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-18T14:10:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Christina Kopecky\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christina Kopecky\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"HTML mailto Links: A Step-By-Step Guide\",\"datePublished\":\"2021-01-12T10:34:35+00:00\",\"dateModified\":\"2021-01-18T14:10:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/\"},\"wordCount\":671,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/\",\"name\":\"HTML mailto Links: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg\",\"datePublished\":\"2021-01-12T10:34:35+00:00\",\"dateModified\":\"2021-01-18T14:10:39+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"When a user clicks on an email address on a website, the expected behavior is for the default email client to open with the email address in the To: field. This tutorial will show you some of the things you can do to customize your email for your clients.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"A possible default email client for many.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-email-link\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"HTML mailto Links: A Step-By-Step Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\",\"name\":\"Christina Kopecky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"caption\":\"Christina Kopecky\"},\"description\":\"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.\",\"sameAs\":[\"http:\\\/\\\/www.linkedin.com\\\/in\\\/cmvnk\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/christina-kopecky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"HTML mailto Links: A Step-By-Step Guide | Career Karma","description":"When a user clicks on an email address on a website, the expected behavior is for the default email client to open with the email address in the To: field. This tutorial will show you some of the things you can do to customize your email for your clients.","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:\/\/careerkarma.com\/blog\/html-email-link\/","og_locale":"en_US","og_type":"article","og_title":"HTML mailto Links: A Step-By-Step Guide","og_description":"When a user clicks on an email address on a website, the expected behavior is for the default email client to open with the email address in the To: field. This tutorial will show you some of the things you can do to customize your email for your clients.","og_url":"https:\/\/careerkarma.com\/blog\/html-email-link\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-01-12T10:34:35+00:00","article_modified_time":"2021-01-18T14:10:39+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg","type":"image\/jpeg"}],"author":"Christina Kopecky","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Christina Kopecky","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"HTML mailto Links: A Step-By-Step Guide","datePublished":"2021-01-12T10:34:35+00:00","dateModified":"2021-01-18T14:10:39+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/"},"wordCount":671,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/html-email-link\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/","url":"https:\/\/careerkarma.com\/blog\/html-email-link\/","name":"HTML mailto Links: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg","datePublished":"2021-01-12T10:34:35+00:00","dateModified":"2021-01-18T14:10:39+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"When a user clicks on an email address on a website, the expected behavior is for the default email client to open with the email address in the To: field. This tutorial will show you some of the things you can do to customize your email for your clients.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/html-email-link\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/stephen-phillips-hostreviews-co-uk-3Mhgvrk4tjM-unsplash.jpg","width":1020,"height":680,"caption":"A possible default email client for many."},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/html-email-link\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"HTML","item":"https:\/\/careerkarma.com\/blog\/html\/"},{"@type":"ListItem","position":3,"name":"HTML mailto Links: A Step-By-Step Guide"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e","name":"Christina Kopecky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","caption":"Christina Kopecky"},"description":"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.","sameAs":["http:\/\/www.linkedin.com\/in\/cmvnk"],"url":"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19332","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/77"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=19332"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19332\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18049"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19332"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19332"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19332"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}