{"version":"1.0","provider_name":"Poppy shop","provider_url":"https:\/\/poppyshoppen.no\/en","author_name":"admin","author_url":"https:\/\/poppyshoppen.no\/en\/author\/vibeke\/","title":"Hva skriver man i julekort | Poppyshoppen","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"kR5Xkiq2hz\"><a href=\"https:\/\/poppyshoppen.no\/en\/hva-skriver-man-i-julekort\/\">Here's what you write in a Christmas card:\n\n**For close family and friends:**\n\n*   **Simple and warm:**\n    *   \"Merry Christmas and a Happy New Year!\"\n    *   \"Wishing you a wonderful Christmas filled with joy and laughter.\"\n    *   \"Merry Christmas to my favorite people! Hope you have a fantastic holiday season.\"\n    *   \"So thankful for you this Christmas. Wishing you all the best!\"\n\n*   **Personalized and recalling memories:**\n    *   \"Merry Christmas [Name\/Family Name]! I was just thinking about that time we [mention a shared memory]. Hope to make more memories next year!\"\n    *   \"Wishing you a Christmas as special as [mention a quality of the person\/family]. So glad to have you in my life.\"\n    *   \"Merry Christmas! It feels like just yesterday we were [mention a past event]. Hope this holiday season brings you as much happiness as you bring me.\"\n\n*   **Focusing on well wishes for the coming year:**\n    *   \"Merry Christmas! Wishing you a healthy, happy, and prosperous New Year.\"\n    *   \"May your Christmas sparkle and your New Year be bright!\"\n    *   \"Hope your holidays are filled with peace, love, and all the best for 2024!\"\n\n**For acquaintances, colleagues, or more distant relatives:**\n\n*   **Polite and general:**\n    *   \"Merry Christmas and a Happy New Year.\"\n    *   \"Wishing you a joyful holiday season.\"\n    *   \"Warm wishes for a Merry Christmas and a wonderful New Year.\"\n    *   \"Happy Holidays! Hope you have a peaceful and happy time.\"\n\n*   **Slightly more personal (if appropriate):**\n    *   \"Merry Christmas! Hope you get some well-deserved rest this holiday season.\"\n    *   \"Wishing you and your family a lovely Christmas and all the best for the coming year.\"\n\n**Key elements to consider:**\n\n1.  **Salutation:** \"Dear [Name(s)],\" or \"To [Family Name],\"\n2.  **Christmas Wish:** \"Merry Christmas,\" \"Happy Holidays,\" \"Joyful Season,\" etc.\n3.  **New Year Wish:** \"Happy New Year,\" \"Prosperous New Year,\" \"Best Wishes for 2024.\"\n4.  **Personal Touch (Optional but recommended):** Mention something specific about them, a shared memory, or a hope for them in the coming year.\n5.  **Closing:** \"With love,\" \"Warmly,\" \"Sincerely,\" \"Best regards,\"\n6.  **Signature:** Your name\n\n**Example Structure:**\n\nDear [Name(s)],\n\nMerry Christmas and a Happy New Year! I hope you have a wonderful holiday season filled with joy and laughter. I was thinking about [mention something specific, e.g., our last get-together, how much I appreciate your help with X]. Wishing you all the best for [the coming year].\n\nWith love,\n[Your Name]\n\n**Important Note:** The most important thing is to be sincere. Even a simple \"Merry Christmas and Happy New Year\" from the heart is greatly appreciated.<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/poppyshoppen.no\/en\/hva-skriver-man-i-julekort\/embed\/#?secret=kR5Xkiq2hz\" width=\"600\" height=\"338\" title=\"&#8220;Hva skriver man i julekort&#8221; &#8212; Poppyshoppen\" data-secret=\"kR5Xkiq2hz\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/poppyshoppen.no\/wp-includes\/js\/wp-embed.js\n<\/script>","thumbnail_url":"https:\/\/poppyshoppen.no\/wp-content\/uploads\/2024\/11\/julekort_snow-much-fun_POPPY131.jpg","thumbnail_width":1476,"thumbnail_height":1476,"description":"Hva skriver man i julekort? Du har handlet inn vakre julekort, men hva skal du egentlig skrive i \u00e5rets julekort?"}