Files
erp_naurua/n8n/exports/current/bestell-eingang-online-shop.yNLjtV9yG0T6CqSr.json

581 lines
111 KiB
JSON
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"updatedAt": "2026-03-29T18:33:43.163Z",
"createdAt": "2025-07-05T06:04:09.291Z",
"id": "yNLjtV9yG0T6CqSr",
"name": "Bestell-Eingang Online-Shop",
"description": null,
"active": true,
"isArchived": false,
"nodes": [
{
"parameters": {
"format": "resolved",
"options": {}
},
"type": "n8n-nodes-base.emailReadImap",
"typeVersion": 2,
"position": [
-272,
-768
],
"id": "def6f3b1-b241-4e6c-89b1-63e4a0c12258",
"name": "Email Trigger (IMAP)",
"credentials": {
"imap": {
"id": "5jzK2kuSVJ8NWL1D",
"name": "IMAP account 4"
}
}
},
{
"parameters": {
"content": "Eingang ist Bestellung",
"height": 520,
"width": 860
},
"type": "n8n-nodes-base.stickyNote",
"position": [
80,
-960
],
"typeVersion": 1,
"id": "cec90477-28bf-45fd-a220-72edb7e20297",
"name": "Sticky Note"
},
{
"parameters": {
"modelId": {
"__rl": true,
"value": "deepseek/deepseek-v3.2",
"mode": "list",
"cachedResultName": "DEEPSEEK/DEEPSEEK-V3.2"
},
"messages": {
"values": [
{
"content": "=Your input is this HTML-Mail: {{ $json.html }}\nYou are a JSON extractor for our order-processing pipeline.\nGiven the raw email HTML/text, you must output exactly one JSON object matching our schema, with these keys (in any order):\n\n*Section Bestellinformationen*\nBestellungNr, Zahlungsstatus, Zahlungsmethode, \n*Section Zahlungsinformationen*\nVorname_RgAdr, Nachname_RgAdr, Strasse_RgAdr, Hausnummer_RgAdr, Stadt_RgAdr, Bundesland_RgAdr, PLZ_RgAdr, Land_RgAdr, EmailKunde, \n*Section Lieferinformationen*\nVorname_LfAdr, Nachname_LfAdr, Strasse_LfAdr, Hausnummer_LfAdr, Stadt_LfAdr, Bundesland_LfAdr, PLZ_LfAdr, Land_LfAdr,\n*Section Versandmethode\"\nLiefermethode\n\n*Section Bestelldetails*\nEach lineItems entry must be an object with exactly these keys: \ntitel (Name of the item), artikelnummer, preisEinheit (CHF Price per lineitem divided by #Items), artikelanzahl (Anzahl)\n*Bottom-Sections*\nNetto, Versandkosten, Mehrwertsteuer, Rabatt (add to total if several Rabatte exist in the section), Rabattcode (is the name of the rabatt in the left column on the line of the rabatt sum) Gesamtsumme, \n\n\nImportant: \n- Output only the JSON object (no surrounding array, no code fences, no explanations). \n- Use string values for all text fields and numbers for all numeric fields. \n- If a field is missing or empty, output an empty string (\"\") for text or 0 for numbers.\n\nExtract the order details from the given raw email (HTML or text) and respond with only the JSON object below—no code fences, no markdown, no surrounding array, no keys like index or message. It must match exactly this schema (ordering doesnt matter):\n\n{\n \"BestellungNr\": string,\n \"Zahlungsstatus\": string,\n \"Zahlungsmethode\": string,\n \"Vorname_RgAdr\": string,\n \"Nachname_RgAdr\": string,\n \"Strasse_RgAdr\": string,\n \"Hausnummer_RgAdr\": string,\n \"Stadt_RgAdr\": string,\n \"Bundesland_RgAdr\": string,\n \"PLZ_RgAdr\": string,\n \"Land_RgAdr\": string,\n \"EmailKunde\": string,\n \"Vorname_LfAdr\": string,\n \"Nachname_LfAdr\": string,\n \"Strasse_LfAdr\": string,\n \"Hausnummer_LfAdr\": string,\n \"Stadt_LfAdr\": string,\n \"Bundesland_LfAdr\": string,\n \"PLZ_LfAdr\": string,\n \"Land_LfAdr\": string,\n \"Liefermethode\": string,\n \"Netto\": number,\n \"Versandkosten\": number,\n \"Mehrwertsteuer\": number,\n \"Rabatt\": number,\n \"Gesamtsumme\": number,\n\"Rabattcode\": string\n \"lineItems\": [\n {\n \"titel\": string,\n \"artikelnummer\": string,\n \"preisEinheit\": number,\n \"artikelanzahl\": number\n }\n // repeat for each line item\n ]\n}"
}
]
},
"options": {}
},
"type": "@n8n/n8n-nodes-langchain.openAi",
"typeVersion": 1.8,
"position": [
144,
-784
],
"id": "7ab009e6-5c24-48cb-ad34-28886cfec035",
"name": "Message a model",
"retryOnFail": true,
"waitBetweenTries": 5000,
"credentials": {
"openAiApi": {
"id": "CQ31lEApDEhhVATP",
"name": "OpenAi OpenRouter"
}
}
},
{
"parameters": {
"jsCode": "// n8n Code-Node parse AI-Agent output into a clean JSON object\nreturn items.map(item => {\n // 1) Roh-String aus dem AI-Step ziehen\n let content = item.json.message?.content\n || item.json.content\n || '';\n \n // 2) Code-Fence und Markdown-Marker entfernen\n content = content\n .replace(/```json\\s*/g, '')\n .replace(/```/g, '')\n .trim();\n \n // 3) Falls der Agent eine Array-Antwort (z.B. “[ { … } ]”) liefert,\n // das Array parsen und das erste Objekt herausgreifen\n if (content.startsWith('[') && content.endsWith(']')) {\n let arr;\n try {\n arr = JSON.parse(content);\n } catch {\n throw new Error(`Kann AI-Array nicht parsen:\\n${content}`);\n }\n if (!Array.isArray(arr) || arr.length === 0) {\n throw new Error(`Erwartetes Array mit mindestens einem Element, bekam:\\n${content}`);\n }\n // Wenn das Array schon Deine Order-Objekte enthält (kein wrapper), nimm arr[0]\n // Andernfalls, falls es das n8n-wrapper-Format ist, grabe tiefer:\n content = JSON.stringify(\n typeof arr[0].message?.content === 'string'\n // falls das erste Element wieder ein wrapper-Objekt mit .message.content ist:\n ? JSON.parse(arr[0].message.content.replace(/```/g, '').trim())\n // sonst direkt das erste Element\n : arr[0]\n );\n }\n \n // 4) Jetzt das finale JSON parsen\n let data;\n try {\n data = JSON.parse(content);\n } catch (e) {\n throw new Error(`Failed to JSON.parse AI output:\\n${content}`);\n }\n \n // 5) Als neues Item zurückgeben\n return { json: data };\n});"
},
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
480,
-784
],
"id": "a199695a-ed3f-4b16-b1c2-0dc5bf143fd8",
"name": "JSON Parsen1"
},
{
"parameters": {
"conditions": {
"options": {
"caseSensitive": true,
"leftValue": "",
"typeValidation": "strict",
"version": 3
},
"conditions": [
{
"id": "dbe1657a-046d-44a2-a602-588bb6e2e83a",
"leftValue": "={{ $json.headers.subject }}",
"rightValue": "Neue Bestellung",
"operator": {
"type": "string",
"operation": "contains"
}
}
],
"combinator": "and"
},
"options": {}
},
"type": "n8n-nodes-base.if",
"typeVersion": 2.3,
"position": [
-64,
-768
],
"id": "8c16451e-288d-4348-b04e-d072a133bc8f",
"name": "If"
},
{
"parameters": {
"method": "POST",
"url": "https://erpnaurua.imhochrain.ch/order-import.php",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "X-Webhook-Secret",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmODJlZDZhOC00NzA0LTRmODAtODYxNy02MjJmZDU5MTFkNTYiLCJpc3MiOiJuOG4iLCJhdWQiOiJwdWJsaWMtYXBpIiw"
}
]
},
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ $json }}",
"options": {
"response": {
"response": {
"responseFormat": "json"
}
}
}
},
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
736,
-784
],
"id": "5c81fac4-8ca3-471a-a546-0e73995446a5",
"name": "Bestellung an ERP senden"
}
],
"connections": {
"Email Trigger (IMAP)": {
"main": [
[
{
"node": "If",
"type": "main",
"index": 0
}
]
]
},
"Message a model": {
"main": [
[
{
"node": "JSON Parsen1",
"type": "main",
"index": 0
}
]
]
},
"JSON Parsen1": {
"main": [
[
{
"node": "Bestellung an ERP senden",
"type": "main",
"index": 0
}
]
]
},
"If": {
"main": [
[
{
"node": "Message a model",
"type": "main",
"index": 0
}
]
]
},
"Bestellung an ERP senden": {
"main": [
[]
]
}
},
"settings": {
"executionOrder": "v1",
"callerPolicy": "workflowsFromSameOwner",
"errorWorkflow": "QQ1KFafAxgMOjKWm",
"availableInMCP": false
},
"staticData": {
"node:Email Trigger (IMAP)": {},
"node:Email Trigger (IMAP)1": {}
},
"meta": {
"templateCredsSetupCompleted": true
},
"pinData": {
"Email Trigger (IMAP)": [
{
"json": {
"headers": {
"return-path": "Return-Path: <msprvs1=20545RoK9oTDl=bounces-17751-1668086@bounces.wixemails.com>",
"x-original-to": "X-Original-To: n8n_naurua_bestelleingang@imhochrain.ch",
"delivered-to": "Delivered-To: n8n_naurua_bestelleingang@imhochrain.ch",
"received-spf": "Received-SPF: pass (bounces.wixemails.com: Sender is authorized to use 'msprvs1=20545RoK9oTDl=bounces-17751-1668086@bounces.wixemails.com' in 'mfrom' identity (mechanism 'exists:%{i}._spf.sparkpostmail.com' matched)) receiver=hz_nas2; identity=mailfrom; envelope-from=\"msprvs1=20545RoK9oTDl=bounces-17751-1668086@bounces.wixemails.com\"; helo=mta-70-25-9.wix-shared.com.sparkpostmail.com; client-ip=156.70.25.9",
"authentication-results": "Authentication-Results: imhochrain.ch;\r\n\tdkim=pass (1024-bit key) header.d=stores-emails.com header.i=@stores-emails.com header.b=jsFBHei7",
"received": "Received: from [10.90.46.161] ([10.90.46.161])\r\n\tby i-043224e4cc422583f.mta1vrest.sd.prd.sparkpost (ecelerity 5.2.0.75340 r(msys-ecelerity:tags/5.2.0.8)) with REST\r\n\tid 27/8B-10073-3CDF4C96; Thu, 26 Mar 2026 09:34:59 +0000",
"x-msfbl": "X-MSFBL: I5/PwAFR1Omzb1UxJL4Y250GcVn79Tr/9VF5IMMBVfg=|eyJzdWJhY2NvdW50X2l\r\n\tkIjoiMTY2ODA4NiIsIm1lc3NhZ2VfaWQiOiI2OWMzYzNmZGM0Njk2NzMxMzg3MiI\r\n\tsImN1c3RvbWVyX2lkIjoiMTc3NTEiLCJyIjoibjhuX25hdXJ1YV9iZXN0ZWxsZWl\r\n\tuZ2FuZ0BpbWhvY2hyYWluLmNoIiwidGVuYW50X2lkIjoic3BjIn0=",
"dkim-signature": "DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=stores-emails.com;\r\n\ts=scph0326; t=1774517699; i=@stores-emails.com;\r\n\tbh=/4WZe0NPBZ4rRG9eBwLVkQNU0JfwTneiOpmKK/Ov38E=;\r\n\th=To:Message-ID:Date:Content-Type:List-Unsubscribe-Post:Subject:\r\n\t List-Unsubscribe:From:From:To:Cc:Subject;\r\n\tb=jsFBHei7R1LKcqpF2tE8f6vPPWTYlaIOtolOZtySbszRdJW+rWb+fS5RKfAoGWTsJ\r\n\t rBD4mmIjiGNHTdF+jAyPIevNXVG8ybRw7cXk8ASx8dc0IbRVP0V5C7ZfwXZGUi0MWA\r\n\t 3iWth0ouQNtVcG/fcOlN7cPUtUHqkwppHGClMZOk=",
"to": "To: n8n_naurua_bestelleingang@imhochrain.ch",
"message-id": "Message-ID: <27.8B.10073.3CDF4C96@i-043224e4cc422583f.mta1vrest.sd.prd.sparkpost>",
"date": "Date: Thu, 26 Mar 2026 09:34:59 +0000",
"content-type": "Content-Type: multipart/alternative; boundary=\"_----myAB/yV9XX69ShxBXnnVhA===_F6/8B-10073-3CDF4C96\"",
"mime-version": "MIME-Version: 1.0",
"reply-to": "Reply-To: naurua.ch@gmail.com",
"list-unsubscribe-post": "List-Unsubscribe-Post: List-Unsubscribe=One-Click",
"subject": "Subject: Neue Bestellung (#10466)",
"list-unsubscribe": "List-Unsubscribe: <https://manage.wix.com/_manage-preferences?token=JWE.eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2Iiwia2lkIjoiYWRxdVA4WE8ifQ.UasP5dRUUJPkYW9s2DC7voh72ZmK2LcfJUSzSNCWt-uRdeD5GNc1aQ.ZDbXuCWhzUmDNxY5ILrM-A.DE7HSGUgMAJv9mVDO26k7bZcJyw2GBqhEPJaauGQDOy9vipoZINC8kIcATm7xvHf7cE18cZhmdQFPfzkjcGfhbD_VLhcfe7P6yOmkFLd4e0bHPEtKLE9I3bZUd7N-0d2Li7pMQzgHKgM6rVcHmyeOv-LT-zLYxtSJLKOmHHZuZMBvQ5GbTkyrDep8TwfgdlZrd8T0kXgAEzuOyh8dMs1PpR53I2a4_m3vISSlK3gs3Zcu5ZaTdFi4JXwQzqpt9YwJvHZmpYhvtR1QcGWlbDSRVFpyNVVqod0V7euzbQ9wqBFI0yvMDMt70Wpy5i-aOw8l0tOPkLAK6i_itUQIYWdfGGeExkfKw_IxzESMDz8cJ3A4gcxdRWopw1QkQvd0lyVqhqYGjOicCnYdM0O5l5YA1qOPnNcf3Wk-1NUNLBwd00.KrDqqqX_KEPspf0jWDGb8Q&locale=de>",
"from": "From: \"Naurua GmbH\" <naurua.ch@stores-emails.com>",
"x-abuse-id": "x-abuse-id: a052a266-8283-493d-8e9f-88a82683af01",
"precedence": "Precedence: Bulk",
"feedback-id": "Feedback-ID: a052a266-8283-493d-8e9f-88a82683af01:6b1c6765-7f6f-45df-b6ab-df8f41b90345:wixshoutout",
"x-mailscanner-id": "X-MailScanner-ID: 211D7339758.A58F0",
"x-mailscanner": "X-MailScanner: Found to be clean",
"x-mailscanner-from": "X-MailScanner-From: msprvs1=20545rok9otdl=bounces-17751-1668086@bounces.wixemails.com",
"x-spam-status": "X-Spam-Status: No"
},
"html": "<!doctype html><html lang=\"de\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\"><head><title></title><!--[if !mso]><!--><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]--><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><style type=\"text/css\">#a a {padding:0;}body {margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}table,td {border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;}img {border:0;height:auto;line-height:100%;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic;}p {display:block;margin:13px 0;}</style><!--[if mso]>\n <noscript>\n <xml>\n <o:OfficeDocumentSettings>\n <o:AllowPNG/>\n <o:PixelsPerInch>96</o:PixelsPerInch>\n </o:OfficeDocumentSettings>\n </xml>\n </noscript>\n <![endif]--><!--[if lte mso 11]>\n <style type=\"text/css\">\n .mj-outlook-group-fix { width:100% !important; }\n </style>\n <![endif]--><style type=\"text/css\"></style><style type=\"text/css\"></style><!--[if !mso]><!--><link href=\"https://static.parastorage.com/unpkg/@wix/wix-emails-fonts@1.1.2/f/Ubuntu.css\" rel=\"stylesheet\" type=\"text/css\"><style type=\"text/css\">@import url(https://static.parastorage.com/unpkg/@wix/wix-emails-fonts@1.1.2/f/Ubuntu.css);</style><!--<![endif]--><style type=\"text/css\">@media only screen and (min-width:480px){ .a {width:100%!important;max-width:100%;}.b {width:50%!important;max-width:50%;}.c {width:48.161764705882355%!important;max-width:48.161764705882355%;}.d {width:25%!important;max-width:25%;}.e {width:26.83823529411765%!important;max-width:26.83823529411765%;}.f {width:58.897058823529406%!important;max-width:58.897058823529406%;}.g {width:41.102941176470594%!important;max-width:41.102941176470594%;} }</style><style media=\"screen and (min-width:480px)\">.h .a {width:100%!important;max-width:100%;}.h .b {width:50%!important;max-width:50%;}.h .c {width:48.161764705882355%!important;max-width:48.161764705882355%;}.h .d {width:25%!important;max-width:25%;}.h .e {width:26.83823529411765%!important;max-width:26.83823529411765%;}.h .f {width:58.897058823529406%!important;max-width:58.897058823529406%;}.h .g {width:41.102941176470594%!important;max-width:41.102941176470594%;}</style><style type=\"text/css\">[owa] .a {width:100%!important;max-width:100%;}[owa] .b {width:50%!important;max-width:50%;}[owa] .c {width:48.161764705882355%!important;max-width:48.161764705882355%;}[owa] .d {width:25%!important;max-width:25%;}[owa] .e {width:26.83823529411765%!important;max-width:26.83823529411765%;}[owa] .f {width:58.897058823529406%!important;max-width:58.897058823529406%;}[owa] .g {width:41.102941176470594%!important;max-width:41.102941176470594%;}</style><style type=\"text/css\">.i {text-decoration:none;} @media all and (max-width:480px){ .j {display:none!important;} } @media all and (min-width:481px){ .k {display:none!important;} }@media all and (max-width:480px){ .l td {width:100%!important;} }@media all and (max-width:480px){ .m{font-size:16px!important;}.n{font-size:16px!important;}.o{font-size:14px!important;}.p{font-size:28px!important;}.q{font-size:28px!important;}.r{font-size:20px!important;}.s{font-size:16px!important;}.t{font-size:16px!important;}.u{font-size:16px!important;}.v{font-size:14px!important;}.w{font-size:24px!important;}.x{font-size:16px!important;}.m{line-height:24px!important;}.n{line-height:24px!important;}.p{line-height:36.4px!important;}.q{line-height:36.4px!important;}.r{line-height:28px!important;}.s{line-height:24px!important;}.v{line-height:21px!important;}.w{line-height:31.200000000000003px!important;} .y>table {width:100%!important;} .z {display:none!important;} .ab .bb>table>tbody>tr>td {padding-bottom:24px!important;} .cb .bb>table>tbody>tr>td {padding-top:24px!important;} .ab.bb>table>tbody>tr>td {padding-bottom:24px!important;} .cb.bb>table>tbody>tr>td {padding-top:24px!important;} .db .bb>table>tbody>tr>td {padding-top:16px!important;} .eb .bb>table>tbody>tr>td {padding-right:16px!important;} .fb .bb>table>tbody>tr>td {padding-bottom:16px!important;} .gb .bb>table>tbody>tr>td {padding-left:16px!important;} .hb .bb>table>tbody>tr>td {padding-left:0px!important;} .ib .bb>table>tbody>tr>td {padding-right:0px!important;} .jb>table>tbody>tr>td {padding-right:16px!important;} .kb>table>tbody>tr>td {padding-left:16px!important;} }@media all and (min-width:481px){ .lb .mb {margin-left:16px!important;} .lb .mb {margin-right:16px!important;} }@media only screen and (max-width:480px){ .nb>table>tbody>tr>td {padding-bottom:0px!important;} .ob>table>tbody>tr>td {padding-top:24px!important;} .pb {width:36px!important;height:36px!important;} .qb {width:12px!important;} .rb {margin:12px!important;} .sb{font-size:28px!important;} .tb{font-size:16px!important;} .ub{font-size:20px!important;} .vb{font-size:14px!important;} .wb{font-size:18px!important;} .xb{line-height:31px!important;} .yb{line-height:24px!important;} .zb{line-height:26px!important;} .ac{line-height:21px!important;} .bc {padding:0!important;} .cc {max-width:100%!important;} .dc {max-width:unset!important;} .ec img,.fc img {max-width:none!important;width:100%!important;} .gc>table>tbody>tr>td,.hc>table>tbody>tr>td,.ec>table>tbody>tr>td,.fc>table>tbody>tr>td {padding:0!important;} .ec {padding-bottom:20px!important;} .ic div {height:20px!important;} .ec>table>tbody>tr>td {padding-top:16px!important;} .fc>table>tbody>tr>td {padding-bottom:16px!important;} .ec,.gc {padding-bottom:20px!important;} .jc>table>tbody>tr>td {padding:0px 12px!important;} .hc>table>tbody>tr>td {padding:0px 8px!important;} .hc.fc>table>tbody>tr>td {padding-bottom:20px!important;} .kc {max-width:100%!important;} .kc img {height:100%!important;} .gc img {max-width:none!important;width:100%!important;} .lc {width:100%!important;padding-right:0!important;padding-left:0!important;} .hc.mc {width:50%!important;}.jc .nc>table>tbody>tr>td>a {padding-left:12px!important;padding-right:12px!important;} .hc.mc {width:50%!important;}.hc.oc {width:25%!important;} .hc.pc {width:60%!important;}.hc.qc {width:40%!important;} .rc>div {height:0px!important;} .sc>table>tbody>tr>td {padding-top:23px!important;} .sc .bb>table>tbody>tr>td {padding-top:17px!important;} } @media only screen and (min-width:480px){ .html-emails-background>tbody>tr>td {padding:24px 0!important;} }a,a:visited {text-decoration:none;}a,a:active,a:visited,a:hover,a:link {color:#109FFF;} .tc>table>tbody>tr>td {overflow:hidden;} .tc>div>table>tbody>tr>td {overflow:hidden;}[class=\"x_html-emails-background\"] {background-color:#F0F0F0!important;} .hc {display:inline-block!important;}[owa] .ec,[owa] .fc {width:50%!important;}[owa] .uc {width:93%!important;max-width:93%!important;}[owa] .vc {max-width:300;margin:0 auto;}[owa] .wc>table>tbody>tr>td {padding:16px 20px 16px 20px!important;}[owa] .xc>table>tbody>tr>td {padding:20px 20px 20px 20px!important;}[owa] .yc {vertical-align:bottom!important;}</style><meta name=\"format-detection\" content=\"telephone=no,date=no,address=no,email=no,url=no\"><link rel=\"icon\" href=\"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==\"><!--Ą--></head><body style=\"word-spacing:normal;background-color:#FFFFFF\">\n<div style=\"color:transparent;visibility:hidden;opacity:0;font-size:0px;border:0;max-height:1px;width:1px;margin:0px;padding:0px;border-width:0px!important;display:none!important;line-height:0px!important;\"><img border=\"0\" width=\"1\" height=\"1\" src=\"http://links.ascendbywix.com/q/K294IGraCAioBWNgynIkMA~~/AABFVxA~/7HJxJ1Uf7wV-FDcFCMMNe_BCCi1ZV5jWXJLX5scfwboqWfukrzs80y_7XVYIxrhDzGjHq-oYyOvpLPpwb-mbnrlfahNR-R5tSCFV9fUBL9Q~\" alt=\"\"/></div>\n<div style=\"display:none;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden\"><span>Auf deiner Website wurde eine Bestellung aufgegeben.</span><span>&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;</span></div><div style=\"-webkit-font-smoothing:antialiased\"><div style=\"color:transparent;visibility:hidden;opacity:0;font-size:0px;border:0;max-height:1px;width:1px;margin:0px;padding:0px;border-width:0px!important;display:none!important;line-height:0px!important\"><!--TRACKING_PIXEL--></div><!--[if gte mso 9 & lt mso 16]><style> li { text-indent: -1em; }\n</style><![endif]--><!--[if gte mso 16]><style> ul li { margin-left: 20px; margin-right: 20px; } ol li { margin-left: 20px; margin-right: 20px; }\n</style><![endif]--><style>@media screen yahoo { .ec img,.fc img {max-width:90%!important;} .zc {width:262px!important;} .html-emails-background {background-position:50% 0!important;} .yc {vertical-align:top!important;}tbody tr td div {overflow:visible!important;} }</style><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:632px\" width=\"632\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:632px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"direction:ltr;font-size:0px;padding:18px 20px 18px 20px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:592px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;font-size:12px;line-height:20px;text-align:center;color:#757575;white-space:pre-wrap\"><strong style=\"font-weight:normal\">Die Nachricht ist nicht sichtbar? <u><a style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;color:#222222;font-size:12px;line-height:20px;text-decoration:none\" href=\"https://naurua.ch/so/tr/3078e2f5-3b52-4dd2-8e38-a47eb2dda7a1/c?w=ZBXb0y92wirf-hRp6Tas5Rs3gqIkfTQjDkrKy0WDOY8.eyJ1IjoiaHR0cHM6Ly9uYXVydWEuY2gvc28vdHIvMzA3OGUyZjUtM2I1Mi00ZGQyLThlMzgtYTQ3ZWIyZGRhN2ExIiwiYyI6IjU1MGZmYzE4LTM0YWYtMzk0Mi1hYjZlLWU0NDQ3OWYxMDI5ZSIsIm0iOiJtYWlsIiwicmkiOiI1MTZjZmFmZS1mMDM0LTRmYWEtOTE4MC05YmU1MGM4YWQ0MDgiLCJydCI6IlVzZXIifQ\" rel=\"noopener noreferrer\" target=\"_blank\">Im Browser ansehen</a></u></strong></div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table><table align=\"center\" class=\"html-emails-background\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#F0F0F0;width:100%;background-color:#F0F0F0\" width=\"100%\" bgcolor=\"#F0F0F0\"><tbody><tr><td><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:632px\" width=\"632\" bgcolor=\"#F0F0F0\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:632px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"direction:ltr;font-size:0px;padding:16px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;border-top:0;direction:ltr;font-size:0px;padding:0;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:600px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td class=\"rc\" style=\"background:#FFFFFF;font-size:0px;word-break:break-word\"><div style=\"height:40px;line-height:40px\">&#8202;</div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"q db eb fb gb jb kb sc wc\" style=\"color:#222222;text-align:left;font-family:helvetica,sans-serif;line-height:1.3;font-size:32px;font-weight:bold;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#5399E5;border:0px none transparent;border-radius:0px;vertical-align:top;padding:28px 20px 10px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"bc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:32px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><p style=\"margin:0;color:#222222;font-family:helvetica,sans-serif;font-size:32px;font-weight:bold;text-align:center;line-height:41px;\" class=\"p sb xb\"><span style=\"color:rgb(255,255,255)\" class=\"sb xb\">Neue Bestellung</span></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"m eb gb jb kb wc\" style=\"color:#222222;font-family:helvetica,sans-serif;line-height:1.5;font-size:16px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#5399E5;border:0px none transparent;border-radius:0px;vertical-align:top;padding:0px 20px 0px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"bc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:16px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><p style=\"margin:0;color:#222222;font-family:helvetica,sans-serif;font-size:16px;text-align:center;line-height:24px;\" class=\"m tb yb\"><span style=\"color:rgb(255,255,255)\" class=\"tb yb\">Auf deiner Website wurde eine Bestellung aufgegeben.</span></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"m db eb fb gb jb kb wc\" style=\"color:#222222;font-family:helvetica,sans-serif;line-height:1.5;font-size:16px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#5399E5;border:0px none transparent;border-radius:0px;vertical-align:top;padding:10px 20px 20px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"bc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:16px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><h3 style=\"margin:0;margin-block-start:0px;margin-block-end:0px;margin-inline-start:0px;margin-inline-end:0px;font-weight:normal;color:#222222;font-family:helvetica,sans-serif;font-size:20px;text-align:center;line-height:28px;\" class=\"r ub zb\"><span style=\"color:rgb(255,255,255)\" class=\"ub zb\"><span style=\"font-weight:bold;line-height:28px;font-size:20px;\" class=\"ub zb\">Bestellung #<span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>10466</bdi></span>&nbsp;</span></span></h3></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"db eb fb gb jb kb\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:#5399E5;vertical-align:top;padding:10px 20px 28px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" valign=\"middle\" class=\"tc\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"max-width:400px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"border-collapse:separate;line-height:100%\"><tbody><tr><td align=\"center\" bgcolor=\"#5399E5\" role=\"presentation\" style=\"border:solid 1px #FFFFFF;border-radius:8px;cursor:auto;mso-padding-alt:15px 36px 15px 36px;background:#5399E5;overflow:visible\" valign=\"middle\"><a href=\"https://naurua.ch/so/tr/3078e2f5-3b52-4dd2-8e38-a47eb2dda7a1/c?w=4ZnyV6y5w7xRDwrZd3UZTDu2Up0po5FFcwxIN8l0keo.eyJ1IjoiaHR0cHM6Ly9tYW5hZ2Uud2l4LmNvbS9kYXNoYm9hcmQvYTA1MmEyNjYtODI4My00OTNkLThlOWYtODhhODI2ODNhZjAxL2Vjb20tcGxhdGZvcm0vb3JkZXItZGV0YWlscy85NTlhMDFjNy1kOTVlLTRhODMtYWI4YS0wNmI3Y2U1YjEzNTMiLCJyIjoiM2ZlMjYxZDktNzE2ZC00MGU1LTg4Y2QtODI5NTFlZTFkMGE4IiwiYyI6IjU1MGZmYzE4LTM0YWYtMzk0Mi1hYjZlLWU0NDQ3OWYxMDI5ZSIsIm0iOiJtYWlsIiwicmkiOiI1MTZjZmFmZS1mMDM0LTRmYWEtOTE4MC05YmU1MGM4YWQ0MDgiLCJydCI6IlVzZXIifQ\" rel=\"noopener\" style=\"display:block;background:#5399E5;color:#FFFFFF;font-family:helvetica,sans-serif;font-size:16px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:15px 36px 15px 36px;mso-padding-alt:0px;border-radius:8px;\" target=\"_blank\"><strong style=\"font-weight:inherit\">Bestellung ansehen</strong></a><img height=\"1\" style=\"display:block;width:118px!important;height:1px;max-width:100%!important;max-height:1px\" src=\"https://static.wixstatic.com/media/8f5152_9c9b518c839548d68838a8d097857b62~mv2.gif\" alt=\"\"></td></tr></tbody></table></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"m kb hb jb ib wc\" style=\"color:#222222;font-family:helvetica,sans-serif;line-height:1.5;font-size:16px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:16px 20px 16px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"bc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:16px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><p style=\"margin:0;line-height:24px;font-size:16px;\" class=\"tb yb\"><span style=\"font-weight:bold\" class=\"tb yb\">Bestellinformationen</span></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:272px\"><![endif]--><div class=\"ec cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 10px 16px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"color:rgb(0,0,0)\" class=\"vb ac\"><span style=\"font-weight:bold;line-height:21px;font-size:14px;\" class=\"vb ac\">Bestellung </span>#<span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>10466</bdi></span><span style=\"font-size:14px;line-height:21px;\" class=\"vb ac\">&nbsp;</span></span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;font-size:14px;line-height:21px;\" class=\"vb ac\"><span style=\"font-weight:bold\" class=\"vb ac\">Datum:</span></p><p style=\"margin:0;font-size:14px;line-height:21px;\" class=\"vb ac\"><span style=\"\" class=\"vb ac\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>26. März 2026 um 10:34 MEZ</bdi></span></span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:272px\"><![endif]--><div class=\"fc cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 20px 16px 10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"color:rgb(0,0,0);font-weight:bold\" class=\"vb ac\">Betrag:</span></p><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"color:rgb(0,0,0)\" class=\"vb ac\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CHF 54.90</bdi></span></span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;font-size:14px;line-height:21px;\" class=\"vb ac\"><span style=\"\" class=\"vb ac\"><span style=\"font-weight:bold;line-height:21px;font-size:14px;\" class=\"vb ac\">Zahlungsstatus: </span>bezahlt</span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;font-size:14px;line-height:21px;\" class=\"vb ac\"><span style=\"font-weight:bold\" class=\"vb ac\">Zahlungsmethode:</span></p><p style=\"margin:0;font-size:14px;line-height:21px;\" class=\"vb ac\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Kredit-/Debitkarten</bdi></span></p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 20px 0px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:100%;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:1px solid #B2B2B2\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:272px\"><![endif]--><div class=\"ec cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:16px 10px 16px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;line-height:24px\" class=\"tb yb\"><span style=\"font-weight:bold;font-size:16px\" class=\"tb yb\">Zahlungsinformationen</span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Holger</bdi></span>&nbsp;<span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Hannemann prakt. Naturarzt</bdi></span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Bahnhofplatz 11<br />9100 Herisau<br />Schweiz</bdi></span>&nbsp;</p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Herisau</bdi></span>, <span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CH-AR</bdi></span>, <span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CH</bdi></span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>9100</bdi></span>&nbsp;</p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi></bdi></span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"color:rgb(34,34,34)\" class=\"vb ac\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>mail@hannemann.ch</bdi></span>&nbsp;</span></p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:272px\"><![endif]--><div class=\"fc cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:50%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:16px 20px 16px 10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;line-height:24px\" class=\"tb yb\"><span style=\"font-weight:bold;font-size:16px\" class=\"tb yb\">Lieferinformationen</span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Holger</bdi></span>&nbsp;<span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Hannemann prakt. Naturarzt</bdi></span>&nbsp;</p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi></bdi></span>&nbsp;</p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Bahnhofplatz 11</bdi></span>&nbsp;</p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi></bdi></span>&nbsp;</p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Herisau CH-AR</bdi></span> <span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CH</bdi></span>&nbsp;</p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>9100</bdi></span>&nbsp;</p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi></bdi></span>&nbsp;</p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;line-height:24px\" class=\"tb yb\"><span style=\"font-weight:bold;font-size:16px\" class=\"tb yb\">Versandmethode</span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>shipping</bdi></span></p><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Versand mit Die Schweizerische Post</bdi></span>&nbsp;(<span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>1-3 Werktage</bdi></span>)</p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 20px 0px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:100%;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:1px solid #B2B2B2\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"m kb hb jb ib wc\" style=\"color:#222222;font-family:helvetica,sans-serif;line-height:1.5;font-size:16px;background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px;\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"background-color:transparent;border:0px none transparent;border-radius:0px;vertical-align:top;padding:16px 20px 16px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"bc\" style=\"font-size:0px;padding:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:16px;font-style:normal;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><p style=\"margin:0;line-height:24px;font-size:16px;\" class=\"tb yb\"><span style=\"font-weight:bold\" class=\"tb yb\">Bestelldetails</span></p></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:262px\"><![endif]--><div class=\"ec cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:48.161764705882355%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 10px 20px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;line-height:24px\" class=\"tb yb\"><span style=\"font-weight:bold;font-size:16px\" class=\"tb yb\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>Chaga Extrakt Tinktur 50 ml | 100% rein</bdi></span></span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\">Artikelnummer: <span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>001.01</bdi></span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\">Preis: <span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CHF 49.95</bdi></span></p></div></div></div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td class=\"ic\" style=\"font-size:0px;word-break:break-word\"><div style=\"height:8px;line-height:8px\">&#8202;</div></td></tr><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi></bdi></span></p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:136px\"><![endif]--><div class=\"gc cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:25%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 10px 20px 10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;line-height:24px\" class=\"tb yb\"><span style=\"font-weight:bold;font-size:16px\" class=\"tb yb\">Anzahl: </span><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>1</bdi></span>&nbsp;</p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:146px\"><![endif]--><div class=\"fc cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:26.83823529411765%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 20px 20px 10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;text-align:right;line-height:24px\" class=\"tb yb\"><span style=\"font-weight:bold;font-size:16px\" class=\"tb yb\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CHF 49.95</bdi></span></span></p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 20px 0px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:100%;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:1px solid #B2B2B2\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:320.4px\"><![endif]--><div class=\"ec cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:58.897058823529406%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:4px 10px 4px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;font-size:14px;text-align:left;line-height:21px\" class=\"v vb ac\">Zwischensumme</p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:223.60000000000002px\"><![endif]--><div class=\"fc cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:41.102941176470594%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:4px 20px 4px 10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;font-size:14px;text-align:right;line-height:21px\" class=\"v vb ac\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CHF 49.95</bdi></span></p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:320.4px\"><![endif]--><div class=\"ec cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:58.897058823529406%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:4px 10px 4px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;font-size:14px;text-align:left;line-height:21px\" class=\"v vb ac\">Versand</p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:223.60000000000002px\"><![endif]--><div class=\"fc cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:41.102941176470594%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:4px 20px 4px 10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;font-size:14px;text-align:right;line-height:21px\" class=\"v vb ac\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CHF 4.95</bdi></span></p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:320.4px\"><![endif]--><div class=\"ec cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:58.897058823529406%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:4px 10px 4px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p class=\"v vb ac\" style=\"margin:0;font-size:14px;line-height:21px\">MwSt.</p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:223.60000000000002px\"><![endif]--><div class=\"fc cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:41.102941176470594%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:4px 20px 4px 10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;font-size:14px;text-align:right;line-height:21px\" class=\"v vb ac\">&nbsp;<span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CHF 0.00</bdi></span></p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:320.4px\"><![endif]--><div class=\"ec cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:58.897058823529406%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:4px 10px 4px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;text-align:left;font-size:18px;line-height:27px;\" class=\"wb zb\"><span style=\"font-weight:bold\" class=\"wb zb\">Gesamtsumme</span></p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td><td style=\"vertical-align:top;width:223.60000000000002px\"><![endif]--><div class=\"fc cc\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;max-width:41.102941176470594%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:4px 20px 4px 10px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"left\" class=\"\" style=\"font-size:0px;padding:0px;padding-top:0px;padding-bottom:0px;word-break:break-word\"><div style=\"font-family:helvetica,sans-serif;font-size:13px;line-height:1;text-align:left;text-transform:none;color:#222222;white-space:pre-wrap\"><div style=\"\"><div class=\"m\" style=\"color:#222222;font-family:helvetica,sans-serif;font-size:16px;line-height:NaNpx;\"><p style=\"margin:0;text-align:right;line-height:24px\" class=\"tb yb\"><span style=\"font-weight:bold;font-size:16px\" class=\"tb yb\"><span style=\"unicode-bidi: embed;\" dir=\"auto\"><bdi>CHF 54.90</bdi></span></span></p></div></div></div></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div class=\"kb hb jb ib\" style=\"background:#FFFFFF;background-color:#FFFFFF;margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td style=\"border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0px 28px 0px 28px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:544px\"><![endif]--><div class=\"bb\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td style=\"vertical-align:top;padding:0px 20px 0px 20px\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0px;word-break:break-word\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\" style=\"color:#000000;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;line-height:22px;table-layout:auto;width:100%;border:none\"><tr><td height=\"40px\"><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style=\"border-bottom:1px solid #B2B2B2\"></td></tr></table></td></tr></table></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr><tr><td width=\"632px\"><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:600px\" width=\"600\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:600px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"border-bottom:0;border-left:0;border-right:0;direction:ltr;font-size:0px;padding:0;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:600px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td class=\"\" style=\"background:#FFFFFF;font-size:0px;word-break:break-word\"><div style=\"height:40px;line-height:40px\">&#8202;</div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"background:#FFFFFF;background-color:#FFFFFF;width:100%\"><tbody><tr><td><!--[if mso | IE]><table align=\"center\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" role=\"presentation\" style=\"width:632px\" width=\"632\" bgcolor=\"#FFFFFF\"><tr><td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly\"><![endif]--><div style=\"margin:0px auto;max-width:632px\"><table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"width:100%\"><tbody><tr><td style=\"direction:ltr;font-size:0px;padding:18px 20px 18px 20px;text-align:center\"><!--[if mso | IE]><table role=\"presentation\" border=\"0\" cellPadding=\"0\" cellSpacing=\"0\"><tr><td style=\"vertical-align:top;width:592px\"><![endif]--><div class=\"\" style=\"font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"vertical-align:top\" width=\"100%\"><tbody><tr><td align=\"center\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;font-size:12px;line-height:20px;text-align:center;color:#757575;white-space:pre-wrap\"><strong style=\"font-weight:normal\">Diese E-Mail wurde von <u><a style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;color:#222222;font-size:12px;line-height:20px;text-decoration:none\" href=\"https://naurua.ch/so/tr/3078e2f5-3b52-4dd2-8e38-a47eb2dda7a1/c?w=z1-nY5tvv5xMH793kk24PFyY_tHVXU7Gwpm6yyIShio.eyJ1IjoiaHR0cHM6Ly93d3cubmF1cnVhLmNoLyIsImMiOiI1NTBmZmMxOC0zNGFmLTM5NDItYWI2ZS1lNDQ0NzlmMTAyOWUiLCJtIjoibWFpbCIsInJpIjoiNTE2Y2ZhZmUtZjAzNC00ZmFhLTkxODAtOWJlNTBjOGFkNDA4IiwicnQiOiJVc2VyIn0\" rel=\"noopener noreferrer\" target=\"_blank\">dieser Website</a></u> gesendet.</strong></div></td></tr><tr><td align=\"center\" style=\"font-size:0px;padding:0;word-break:break-word\"><div style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;font-size:12px;line-height:20px;text-align:center;color:#757575;white-space:pre-wrap\"><strong style=\"font-weight:normal\">Falls der Erhalt dieser E-Mails nicht erwünscht ist, bitte die E-Mail-Einstellungen <u><a style=\"font-family:Helvetica,Ubuntu,Arial,sans-serif;color:#222222;font-size:12px;line-height:20px;text-decoration:none\" href=\"https://manage.wix.com/_manage-preferences?token=JWE.eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2Iiwia2lkIjoiYWRxdVA4WE8ifQ.UasP5dRUUJPkYW9s2DC7voh72ZmK2LcfJUSzSNCWt-uRdeD5GNc1aQ.ZDbXuCWhzUmDNxY5ILrM-A.DE7HSGUgMAJv9mVDO26k7bZcJyw2GBqhEPJaauGQDOy9vipoZINC8kIcATm7xvHf7cE18cZhmdQFPfzkjcGfhbD_VLhcfe7P6yOmkFLd4e0bHPEtKLE9I3bZUd7N-0d2Li7pMQzgHKgM6rVcHmyeOv-LT-zLYxtSJLKOmHHZuZMBvQ5GbTkyrDep8TwfgdlZrd8T0kXgAEzuOyh8dMs1PpR53I2a4_m3vISSlK3gs3Zcu5ZaTdFi4JXwQzqpt9YwJvHZmpYhvtR1QcGWlbDSRVFpyNVVqod0V7euzbQ9wqBFI0yvMDMt70Wpy5i-aOw8l0tOPkLAK6i_itUQIYWdfGGeExkfKw_IxzESMDz8cJ3A4gcxdRWopw1QkQvd0lyVqhqYGjOicCnYdM0O5l5YA1qOPnNcf3Wk-1NUNLBwd00.KrDqqqX_KEPspf0jWDGb8Q&locale=de\" rel=\"noopener noreferrer\" target=\"_blank\">hier</a></u> ändern.</strong></div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div>\n<img border=\"0\" width=\"1\" height=\"1\" alt=\"\" src=\"http://links.ascendbywix.com/q/S4gUI1ItJCMlNXoZDL03Vg~~/AABFVxA~/EVJIKmcdfwj_IIqlAbGwcf0s38pTN25adMSqwa1QasXmJ14BdkAmxSVw1W6iIaTy1JCB8jKprvWd7jUlihY6U2sfNycWpmnuU6issZrYq9o~\">\n</body></html>",
"text": "Neue Bestellung\n\nAuf deiner Website wurde eine Bestellung aufgegeben.\n\nBestellung #10466  \n\nBestellinformationen\n\nBestelldetails\n\nKlicke auf den Link unten, um die Nachricht in einem Browser zu öffnen.\nhttps://naurua.ch/so/tr/3078e2f5-3b52-4dd2-8e38-a47eb2dda7a1\n\nDiese E-Mail wird an Abonnenten dieser Website gesendet.\nhttps://naurua.ch/so/tr/3078e2f5-3b52-4dd2-8e38-a47eb2dda7a1/c?w=z1-nY5tvv5xMH793kk24PFyY_tHVXU7Gwpm6yyIShio.eyJ1IjoiaHR0cHM6Ly93d3cubmF1cnVhLmNoLyIsImMiOiI1NTBmZmMxOC0zNGFmLTM5NDItYWI2ZS1lNDQ0NzlmMTAyOWUiLCJtIjoibWFpbCIsInJpIjoiNTE2Y2ZhZmUtZjAzNC00ZmFhLTkxODAtOWJlNTBjOGFkNDA4IiwicnQiOiJVc2VyIn0\n\nZum Abbestellen dieser E-Mail bitte hier klicken:\nhttps://manage.wix.com/_manage-preferences?token=JWE.eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2Iiwia2lkIjoiYWRxdVA4WE8ifQ.UasP5dRUUJPkYW9s2DC7voh72ZmK2LcfJUSzSNCWt-uRdeD5GNc1aQ.ZDbXuCWhzUmDNxY5ILrM-A.DE7HSGUgMAJv9mVDO26k7bZcJyw2GBqhEPJaauGQDOy9vipoZINC8kIcATm7xvHf7cE18cZhmdQFPfzkjcGfhbD_VLhcfe7P6yOmkFLd4e0bHPEtKLE9I3bZUd7N-0d2Li7pMQzgHKgM6rVcHmyeOv-LT-zLYxtSJLKOmHHZuZMBvQ5GbTkyrDep8TwfgdlZrd8T0kXgAEzuOyh8dMs1PpR53I2a4_m3vISSlK3gs3Zcu5ZaTdFi4JXwQzqpt9YwJvHZmpYhvtR1QcGWlbDSRVFpyNVVqod0V7euzbQ9wqBFI0yvMDMt70Wpy5i-aOw8l0tOPkLAK6i_itUQIYWdfGGeExkfKw_IxzESMDz8cJ3A4gcxdRWopw1QkQvd0lyVqhqYGjOicCnYdM0O5l5YA1qOPnNcf3Wk-1NUNLBwd00.KrDqqqX_KEPspf0jWDGb8Q&locale=de",
"textAsHtml": "<p>Neue Bestellung</p><p>Auf deiner Website wurde eine Bestellung aufgegeben.</p><p>Bestellung #10466 &nbsp;</p><p>Bestellinformationen</p><p>Bestelldetails</p><p>Klicke auf den Link unten, um die Nachricht in einem Browser zu &ouml;ffnen.<br/><a href=\"https://naurua.ch/so/tr/3078e2f5-3b52-4dd2-8e38-a47eb2dda7a1\">https://naurua.ch/so/tr/3078e2f5-3b52-4dd2-8e38-a47eb2dda7a1</a></p><p>Diese E-Mail wird an Abonnenten dieser Website gesendet.<br/><a href=\"https://naurua.ch/so/tr/3078e2f5-3b52-4dd2-8e38-a47eb2dda7a1/c?w=z1-nY5tvv5xMH793kk24PFyY_tHVXU7Gwpm6yyIShio.eyJ1IjoiaHR0cHM6Ly93d3cubmF1cnVhLmNoLyIsImMiOiI1NTBmZmMxOC0zNGFmLTM5NDItYWI2ZS1lNDQ0NzlmMTAyOWUiLCJtIjoibWFpbCIsInJpIjoiNTE2Y2ZhZmUtZjAzNC00ZmFhLTkxODAtOWJlNTBjOGFkNDA4IiwicnQiOiJVc2VyIn0\">https://naurua.ch/so/tr/3078e2f5-3b52-4dd2-8e38-a47eb2dda7a1/c?w=z1-nY5tvv5xMH793kk24PFyY_tHVXU7Gwpm6yyIShio.eyJ1IjoiaHR0cHM6Ly93d3cubmF1cnVhLmNoLyIsImMiOiI1NTBmZmMxOC0zNGFmLTM5NDItYWI2ZS1lNDQ0NzlmMTAyOWUiLCJtIjoibWFpbCIsInJpIjoiNTE2Y2ZhZmUtZjAzNC00ZmFhLTkxODAtOWJlNTBjOGFkNDA4IiwicnQiOiJVc2VyIn0</a></p><p>Zum Abbestellen dieser E-Mail bitte hier klicken:<br/><a href=\"https://manage.wix.com/_manage-preferences?token=JWE.eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2Iiwia2lkIjoiYWRxdVA4WE8ifQ.UasP5dRUUJPkYW9s2DC7voh72ZmK2LcfJUSzSNCWt-uRdeD5GNc1aQ.ZDbXuCWhzUmDNxY5ILrM-A.DE7HSGUgMAJv9mVDO26k7bZcJyw2GBqhEPJaauGQDOy9vipoZINC8kIcATm7xvHf7cE18cZhmdQFPfzkjcGfhbD_VLhcfe7P6yOmkFLd4e0bHPEtKLE9I3bZUd7N-0d2Li7pMQzgHKgM6rVcHmyeOv-LT-zLYxtSJLKOmHHZuZMBvQ5GbTkyrDep8TwfgdlZrd8T0kXgAEzuOyh8dMs1PpR53I2a4_m3vISSlK3gs3Zcu5ZaTdFi4JXwQzqpt9YwJvHZmpYhvtR1QcGWlbDSRVFpyNVVqod0V7euzbQ9wqBFI0yvMDMt70Wpy5i-aOw8l0tOPkLAK6i_itUQIYWdfGGeExkfKw_IxzESMDz8cJ3A4gcxdRWopw1QkQvd0lyVqhqYGjOicCnYdM0O5l5YA1qOPnNcf3Wk-1NUNLBwd00.KrDqqqX_KEPspf0jWDGb8Q&locale=de\">https://manage.wix.com/_manage-preferences?token=JWE.eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2Iiwia2lkIjoiYWRxdVA4WE8ifQ.UasP5dRUUJPkYW9s2DC7voh72ZmK2LcfJUSzSNCWt-uRdeD5GNc1aQ.ZDbXuCWhzUmDNxY5ILrM-A.DE7HSGUgMAJv9mVDO26k7bZcJyw2GBqhEPJaauGQDOy9vipoZINC8kIcATm7xvHf7cE18cZhmdQFPfzkjcGfhbD_VLhcfe7P6yOmkFLd4e0bHPEtKLE9I3bZUd7N-0d2Li7pMQzgHKgM6rVcHmyeOv-LT-zLYxtSJLKOmHHZuZMBvQ5GbTkyrDep8TwfgdlZrd8T0kXgAEzuOyh8dMs1PpR53I2a4_m3vISSlK3gs3Zcu5ZaTdFi4JXwQzqpt9YwJvHZmpYhvtR1QcGWlbDSRVFpyNVVqod0V7euzbQ9wqBFI0yvMDMt70Wpy5i-aOw8l0tOPkLAK6i_itUQIYWdfGGeExkfKw_IxzESMDz8cJ3A4gcxdRWopw1QkQvd0lyVqhqYGjOicCnYdM0O5l5YA1qOPnNcf3Wk-1NUNLBwd00.KrDqqqX_KEPspf0jWDGb8Q&locale=de</a></p>",
"subject": "Neue Bestellung (#10466)",
"date": "2026-03-26T09:34:59.000Z",
"to": {
"value": [
{
"address": "n8n_naurua_bestelleingang@imhochrain.ch",
"name": ""
}
],
"html": "<span class=\"mp_address_group\"><a href=\"mailto:n8n_naurua_bestelleingang@imhochrain.ch\" class=\"mp_address_email\">n8n_naurua_bestelleingang@imhochrain.ch</a></span>",
"text": "n8n_naurua_bestelleingang@imhochrain.ch"
},
"from": {
"value": [
{
"address": "naurua.ch@stores-emails.com",
"name": "Naurua GmbH"
}
],
"html": "<span class=\"mp_address_group\"><span class=\"mp_address_name\">Naurua GmbH</span> &lt;<a href=\"mailto:naurua.ch@stores-emails.com\" class=\"mp_address_email\">naurua.ch@stores-emails.com</a>&gt;</span>",
"text": "\"Naurua GmbH\" <naurua.ch@stores-emails.com>"
},
"messageId": "<27.8B.10073.3CDF4C96@i-043224e4cc422583f.mta1vrest.sd.prd.sparkpost>",
"replyTo": {
"value": [
{
"address": "naurua.ch@gmail.com",
"name": ""
}
],
"html": "<span class=\"mp_address_group\"><a href=\"mailto:naurua.ch@gmail.com\" class=\"mp_address_email\">naurua.ch@gmail.com</a></span>",
"text": "naurua.ch@gmail.com"
},
"attributes": {
"uid": 266
}
},
"pairedItem": {
"item": 0
}
}
],
"Message a model": [
{
"json": {
"index": 0,
"logprobs": null,
"finish_reason": "stop",
"native_finish_reason": "stop",
"message": {
"role": "assistant",
"content": "{\n \"BestellungNr\": \"10466\",\n \"Zahlungsstatus\": \"bezahlt\",\n \"Zahlungsmethode\": \"Kredit-/Debitkarten\",\n \"Vorname_RgAdr\": \"Holger\",\n \"Nachname_RgAdr\": \"Hannemann prakt. Naturarzt\",\n \"Strasse_RgAdr\": \"Bahnhofplatz\",\n \"Hausnummer_RgAdr\": \"11\",\n \"Stadt_RgAdr\": \"Herisau\",\n \"Bundesland_RgAdr\": \"CH-AR\",\n \"PLZ_RgAdr\": \"9100\",\n \"Land_RgAdr\": \"Schweiz\",\n \"EmailKunde\": \"mail@hannemann.ch\",\n \"Vorname_LfAdr\": \"Holger\",\n \"Nachname_LfAdr\": \"Hannemann prakt. Naturarzt\",\n \"Strasse_LfAdr\": \"Bahnhofplatz\",\n \"Hausnummer_LfAdr\": \"11\",\n \"Stadt_LfAdr\": \"Herisau\",\n \"Bundesland_LfAdr\": \"CH-AR\",\n \"PLZ_LfAdr\": \"9100\",\n \"Land_LfAdr\": \"CH\",\n \"Liefermethode\": \"Versand mit Die Schweizerische Post (1-3 Werktage)\",\n \"Netto\": 49.95,\n \"Versandkosten\": 4.95,\n \"Mehrwertsteuer\": 0.0,\n \"Rabatt\": 0.0,\n \"Rabattcode\": \"\",\n \"Gesamtsumme\": 54.90,\n \"lineItems\": [\n {\n \"titel\": \"Chaga Extrakt Tinktur 50 ml | 100% rein\",\n \"artikelnummer\": \"001.01\",\n \"preisEinheit\": 49.95,\n \"artikelanzahl\": 1\n }\n ]\n}",
"refusal": null,
"reasoning": null
}
},
"pairedItem": {
"item": 0
}
}
]
},
"versionId": "0d0f1eec-82c8-4b6e-9770-bbbeca45a905",
"activeVersionId": "0d0f1eec-82c8-4b6e-9770-bbbeca45a905",
"versionCounter": 221,
"triggerCount": 1,
"shared": [
{
"updatedAt": "2025-07-05T06:04:09.312Z",
"createdAt": "2025-07-05T06:04:09.312Z",
"role": "workflow:owner",
"workflowId": "yNLjtV9yG0T6CqSr",
"projectId": "loIw8cF8XKYX00Ow",
"project": {
"updatedAt": "2025-06-07T09:04:27.150Z",
"createdAt": "2025-06-07T06:22:39.698Z",
"id": "loIw8cF8XKYX00Ow",
"name": "Mathias Gläser <mathias.kurt.glaeser@gmail.com>",
"type": "personal",
"icon": null,
"description": null,
"creatorId": "f82ed6a8-4704-4f80-8617-622fd5911d56"
}
}
],
"tags": [],
"activeVersion": {
"updatedAt": "2026-03-29T18:33:43.165Z",
"createdAt": "2026-03-29T18:33:43.165Z",
"versionId": "0d0f1eec-82c8-4b6e-9770-bbbeca45a905",
"workflowId": "yNLjtV9yG0T6CqSr",
"nodes": [
{
"parameters": {
"format": "resolved",
"options": {}
},
"type": "n8n-nodes-base.emailReadImap",
"typeVersion": 2,
"position": [
-272,
-768
],
"id": "def6f3b1-b241-4e6c-89b1-63e4a0c12258",
"name": "Email Trigger (IMAP)",
"credentials": {
"imap": {
"id": "5jzK2kuSVJ8NWL1D",
"name": "IMAP account 4"
}
}
},
{
"parameters": {
"content": "Eingang ist Bestellung",
"height": 520,
"width": 860
},
"type": "n8n-nodes-base.stickyNote",
"position": [
80,
-960
],
"typeVersion": 1,
"id": "cec90477-28bf-45fd-a220-72edb7e20297",
"name": "Sticky Note"
},
{
"parameters": {
"modelId": {
"__rl": true,
"value": "deepseek/deepseek-v3.2",
"mode": "list",
"cachedResultName": "DEEPSEEK/DEEPSEEK-V3.2"
},
"messages": {
"values": [
{
"content": "=Your input is this HTML-Mail: {{ $json.html }}\nYou are a JSON extractor for our order-processing pipeline.\nGiven the raw email HTML/text, you must output exactly one JSON object matching our schema, with these keys (in any order):\n\n*Section Bestellinformationen*\nBestellungNr, Zahlungsstatus, Zahlungsmethode, \n*Section Zahlungsinformationen*\nVorname_RgAdr, Nachname_RgAdr, Strasse_RgAdr, Hausnummer_RgAdr, Stadt_RgAdr, Bundesland_RgAdr, PLZ_RgAdr, Land_RgAdr, EmailKunde, \n*Section Lieferinformationen*\nVorname_LfAdr, Nachname_LfAdr, Strasse_LfAdr, Hausnummer_LfAdr, Stadt_LfAdr, Bundesland_LfAdr, PLZ_LfAdr, Land_LfAdr,\n*Section Versandmethode\"\nLiefermethode\n\n*Section Bestelldetails*\nEach lineItems entry must be an object with exactly these keys: \ntitel (Name of the item), artikelnummer, preisEinheit (CHF Price per lineitem divided by #Items), artikelanzahl (Anzahl)\n*Bottom-Sections*\nNetto, Versandkosten, Mehrwertsteuer, Rabatt (add to total if several Rabatte exist in the section), Rabattcode (is the name of the rabatt in the left column on the line of the rabatt sum) Gesamtsumme, \n\n\nImportant: \n- Output only the JSON object (no surrounding array, no code fences, no explanations). \n- Use string values for all text fields and numbers for all numeric fields. \n- If a field is missing or empty, output an empty string (\"\") for text or 0 for numbers.\n\nExtract the order details from the given raw email (HTML or text) and respond with only the JSON object below—no code fences, no markdown, no surrounding array, no keys like index or message. It must match exactly this schema (ordering doesnt matter):\n\n{\n \"BestellungNr\": string,\n \"Zahlungsstatus\": string,\n \"Zahlungsmethode\": string,\n \"Vorname_RgAdr\": string,\n \"Nachname_RgAdr\": string,\n \"Strasse_RgAdr\": string,\n \"Hausnummer_RgAdr\": string,\n \"Stadt_RgAdr\": string,\n \"Bundesland_RgAdr\": string,\n \"PLZ_RgAdr\": string,\n \"Land_RgAdr\": string,\n \"EmailKunde\": string,\n \"Vorname_LfAdr\": string,\n \"Nachname_LfAdr\": string,\n \"Strasse_LfAdr\": string,\n \"Hausnummer_LfAdr\": string,\n \"Stadt_LfAdr\": string,\n \"Bundesland_LfAdr\": string,\n \"PLZ_LfAdr\": string,\n \"Land_LfAdr\": string,\n \"Liefermethode\": string,\n \"Netto\": number,\n \"Versandkosten\": number,\n \"Mehrwertsteuer\": number,\n \"Rabatt\": number,\n \"Gesamtsumme\": number,\n\"Rabattcode\": string\n \"lineItems\": [\n {\n \"titel\": string,\n \"artikelnummer\": string,\n \"preisEinheit\": number,\n \"artikelanzahl\": number\n }\n // repeat for each line item\n ]\n}"
}
]
},
"options": {}
},
"type": "@n8n/n8n-nodes-langchain.openAi",
"typeVersion": 1.8,
"position": [
144,
-784
],
"id": "7ab009e6-5c24-48cb-ad34-28886cfec035",
"name": "Message a model",
"retryOnFail": true,
"waitBetweenTries": 5000,
"credentials": {
"openAiApi": {
"id": "CQ31lEApDEhhVATP",
"name": "OpenAi OpenRouter"
}
}
},
{
"parameters": {
"jsCode": "// n8n Code-Node parse AI-Agent output into a clean JSON object\nreturn items.map(item => {\n // 1) Roh-String aus dem AI-Step ziehen\n let content = item.json.message?.content\n || item.json.content\n || '';\n \n // 2) Code-Fence und Markdown-Marker entfernen\n content = content\n .replace(/```json\\s*/g, '')\n .replace(/```/g, '')\n .trim();\n \n // 3) Falls der Agent eine Array-Antwort (z.B. “[ { … } ]”) liefert,\n // das Array parsen und das erste Objekt herausgreifen\n if (content.startsWith('[') && content.endsWith(']')) {\n let arr;\n try {\n arr = JSON.parse(content);\n } catch {\n throw new Error(`Kann AI-Array nicht parsen:\\n${content}`);\n }\n if (!Array.isArray(arr) || arr.length === 0) {\n throw new Error(`Erwartetes Array mit mindestens einem Element, bekam:\\n${content}`);\n }\n // Wenn das Array schon Deine Order-Objekte enthält (kein wrapper), nimm arr[0]\n // Andernfalls, falls es das n8n-wrapper-Format ist, grabe tiefer:\n content = JSON.stringify(\n typeof arr[0].message?.content === 'string'\n // falls das erste Element wieder ein wrapper-Objekt mit .message.content ist:\n ? JSON.parse(arr[0].message.content.replace(/```/g, '').trim())\n // sonst direkt das erste Element\n : arr[0]\n );\n }\n \n // 4) Jetzt das finale JSON parsen\n let data;\n try {\n data = JSON.parse(content);\n } catch (e) {\n throw new Error(`Failed to JSON.parse AI output:\\n${content}`);\n }\n \n // 5) Als neues Item zurückgeben\n return { json: data };\n});"
},
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
480,
-784
],
"id": "a199695a-ed3f-4b16-b1c2-0dc5bf143fd8",
"name": "JSON Parsen1"
},
{
"parameters": {
"conditions": {
"options": {
"caseSensitive": true,
"leftValue": "",
"typeValidation": "strict",
"version": 3
},
"conditions": [
{
"id": "dbe1657a-046d-44a2-a602-588bb6e2e83a",
"leftValue": "={{ $json.headers.subject }}",
"rightValue": "Neue Bestellung",
"operator": {
"type": "string",
"operation": "contains"
}
}
],
"combinator": "and"
},
"options": {}
},
"type": "n8n-nodes-base.if",
"typeVersion": 2.3,
"position": [
-64,
-768
],
"id": "8c16451e-288d-4348-b04e-d072a133bc8f",
"name": "If"
},
{
"parameters": {
"method": "POST",
"url": "https://erpnaurua.imhochrain.ch/order-import.php",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "X-Webhook-Secret",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmODJlZDZhOC00NzA0LTRmODAtODYxNy02MjJmZDU5MTFkNTYiLCJpc3MiOiJuOG4iLCJhdWQiOiJwdWJsaWMtYXBpIiw"
}
]
},
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ $json }}",
"options": {
"response": {
"response": {
"responseFormat": "json"
}
}
}
},
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
736,
-784
],
"id": "5c81fac4-8ca3-471a-a546-0e73995446a5",
"name": "Bestellung an ERP senden"
}
],
"connections": {
"Email Trigger (IMAP)": {
"main": [
[
{
"node": "If",
"type": "main",
"index": 0
}
]
]
},
"Message a model": {
"main": [
[
{
"node": "JSON Parsen1",
"type": "main",
"index": 0
}
]
]
},
"JSON Parsen1": {
"main": [
[
{
"node": "Bestellung an ERP senden",
"type": "main",
"index": 0
}
]
]
},
"If": {
"main": [
[
{
"node": "Message a model",
"type": "main",
"index": 0
}
]
]
},
"Bestellung an ERP senden": {
"main": [
[]
]
}
},
"authors": "Mathias Gläser",
"name": null,
"description": null,
"autosaved": false,
"workflowPublishHistory": [
{
"createdAt": "2026-03-29T18:33:43.293Z",
"id": 144,
"workflowId": "yNLjtV9yG0T6CqSr",
"versionId": "0d0f1eec-82c8-4b6e-9770-bbbeca45a905",
"event": "activated",
"userId": "f82ed6a8-4704-4f80-8617-622fd5911d56"
},
{
"createdAt": "2026-03-29T18:33:43.221Z",
"id": 143,
"workflowId": "yNLjtV9yG0T6CqSr",
"versionId": "0d0f1eec-82c8-4b6e-9770-bbbeca45a905",
"event": "deactivated",
"userId": "f82ed6a8-4704-4f80-8617-622fd5911d56"
}
]
}
}