Aufladungen, Geschenkkarten, eSIMs und mehr für Kuba und weltweit. Die besten Preise auf dem Markt. (2024)

  • English
  • Español
  • Italian
  • German
  • 中文(中国)
  • Русский

Menu

  • Cubacel
  • Touristen-SIM-KARTE
  • EtecsaModem
  • NautaPlus
  • AufladenTourist
  • International
  • Cubacel OHNE KARTE

Geschenkkarten online senden

Wählen Sie das Land und das gewünschte Produkt aus.

  • Bargeld
  • Unterhaltung
  • Essen
  • Spiele
  • Einzelhandel
  • Reisen

Mehr Produkte anzeigen

Mehr Produkte anzeigen

Mehr Produkte anzeigen

Mehr Produkte anzeigen

Mehr Produkte anzeigen

Telefonnummer ist erforderlich

Wir senden den PIN-Code Ihrer Geschenkkarte an diese Mobilnummer. Sie können den PIN auch im Bestellverlauf einsehen.

${name}
`); card.on('click', function() { $('.operator-card').removeClass('selected'); $(this).addClass('selected'); const selectedOperator = id; const tabs = ['cashcards', 'entertainment', 'food', 'gaming', 'retail', 'travel']; let firstActiveTab = null; if (selectedOperator) { const operatorProducts = products.filter(product => product.operator_id === selectedOperator); tabs.forEach(tab => { const tabProducts = operatorProducts.filter(product => mapSubservice(product.subservice.toLowerCase()) === tab); appendProducts(`#${tab}-cards`, `#${tab}-more`, tabProducts, `#${tab}-tab-item`, tab); if (tabProducts.length > 0 && !firstActiveTab) { firstActiveTab = tab; } }); if (firstActiveTab) { $(`#${firstActiveTab}-tab`).tab('show'); $('#tabs-container').removeClass('d-none').addClass('d-block'); } else { $('#tabs-container').removeClass('d-block').addClass('d-none'); } updateURL($('#country option:selected').text(), $(this).find('.card-title').text()); updateDynamicText($('#country option:selected').text(), $(this).find('.card-title').text()); // Ocultar otros operadores y mostrar la tarjeta "Mostrar más operadores" $('.operator-card').not('.selected').addClass('d-none'); if(operatorCount > 1){ $('#show-more-operators-card').removeClass('d-none'); } } else { tabs.forEach(tab => { $(`#${tab}-cards`).empty(); $(`#${tab}-tab-item`).hide(); }); $('#tabs-container').removeClass('d-block').addClass('d-none'); } }); if (operatorParam && name.toLowerCase() === operatorParam.toLowerCase()) { selectedOperatorCard = card; } else { $('#operator-cards').append(card); } operatorCount++; }); // Agregar la tarjeta "Mostrar más operadores" const showMoreCard = $(`
Andere
`); showMoreCard.on('click', function() { $('.operator-card').removeClass('d-none'); $(this).addClass('d-none'); }); if ($('#operator-cards .operator-card').length > 1) { $('#operator-cards').append(showMoreCard); } $('#operator-cards').append(showMoreCard); if (selectedOperatorCard) { $('#operator-cards').prepend(selectedOperatorCard); selectedOperatorCard.click(); } $('.operator-select').removeClass('d-none').addClass('d-block'); updateURL($('#country option:selected').text()); updateDynamicText($('#country option:selected').text()); } else { $('#operator-cards').empty(); $('.operator-select').removeClass('d-block').addClass('d-none'); $('#tabs-container').removeClass('d-block').addClass('d-none'); } }); function mapSubservice(subservice) { switch (subservice) { case 'cash cards': return 'cashcards'; case 'travel and transport': return 'travel'; default: return subservice.toLowerCase().replace(/ /g, ''); } } function appendProducts(cardsContainer, moreContainer, products, tabItem, type) { $(cardsContainer).empty(); $(moreContainer).hide(); products.sort((a, b) => parseFloat(a.retail_price) - parseFloat(b.retail_price)); if (products.length > 0) { $(tabItem).show(); const initialProducts = products.slice(0, 9); const remainingProducts = products.slice(9); initialProducts.forEach((product, index) => { $(cardsContainer).append(createProductCard(product, type)); }); if (remainingProducts.length > 0) { $(moreContainer).show().off('click').on('click', function(e) { e.preventDefault(); remainingProducts.forEach((product) => { $(cardsContainer).append(createProductCard(product, type)); }); $(moreContainer).hide(); }); } } else { $(tabItem).hide(); } } function createProductCard(product, type) { let content = ''; const retailPrice = parseFloat(product.retail_price).toFixed(2); let cardClass = ''; if (type === 'cashcards') { cardClass = 'giftcard-product-card'; content = `
${product.product_name}

${product.description}

Preis ${retailPrice} USD

`; } else if (type === 'entertainment') { cardClass = 'subservice-product-card'; content = `
${product.product_name}

${product.description}

Preis ${retailPrice} USD

`; } else if (type === 'food') { cardClass = 'subservice-product-card'; content = `
${product.product_name}

${product.description}

Preis ${retailPrice} USD

`; } else if (type === 'gaming') { cardClass = 'subservice-product-card'; content = `
${product.product_name}

${product.description}

Preis ${retailPrice} USD

`; } else if (type === 'retail') { cardClass = 'subservice-product-card'; content = `
${product.product_name}

${product.description}

Preis ${retailPrice} USD

`; } else if (type === 'travel') { cardClass = 'subservice-product-card'; content = `
${product.product_name}

${product.description}

Preis ${retailPrice} USD

`; } return `

${content}

`; } function updateURL(country, operator) { const availableLanguages = ["en","es","it","de","cn","ru"]; const urlSegments = window.location.pathname.split('/').filter(param => param); const baseUrl = '//suenacuba.com/'; // Check if the first segment is a valid language let languageSegment = ''; if (availableLanguages.includes(urlSegments[0])) { languageSegment = urlSegments[0]; } // Construct the new URL let newURL = baseUrl; if (languageSegment) { newURL += languageSegment + '/'; } newURL += 'gift-cards/' + country.toLowerCase().replace(/ /g, '-'); if (operator) { newURL += '/' + operator.toLowerCase().replace(/ /g, '-'); } if (newURL !== window.location.href) { if (isInitializing) return; history.pushState(null, '', newURL); } } function updateDynamicText(country, operator) { let text = 'Geschenkkarten online senden'; if (country && operator) { text = `${country} ${operator} Geschenkkarte.`; } else if (country) { text = `Geschenkkarte ${country}.`; } $('#dynamic-text').text(text); document.title = text; // Actualizar el título de la página } $(document).on('click', '.choose-product-btn', function (e) { e.stopImmediatePropagation(); const productId = $(this).data('product-id'); const destination_currency = $(this).data('product-destination_currency'); const destination_amount = $(this).data('product-destination_amount'); const productOperatorId = $(this).data('product-operatorid'); const productName = $(this).data('product-name'); const requiredPhone = $(this).data('required-phone'); const isPhoneRequired = requiredPhone && requiredPhone.trim() !== ""; $('#phoneModal').modal('show'); $('#phoneModalLabel').text(isPhoneRequired ? 'Telefonnummer ist erforderlich' : 'Telefonnummer (optional)'); $('#modal-phone').prop('required', isPhoneRequired); $('#confirmPhone').off('click').on('click', function () { const phoneNumber = $('#modal-phone').val(); if (isPhoneRequired && !phoneNumber) { alert('Phone number is required'); return; } const finalPhoneNumber = phoneNumber || 'Gift Card'; $('#phoneModal').modal('hide'); btncreaterecordProcess(productId, productOperatorId, productName, finalPhoneNumber,destination_amount,destination_currency); }); }); function btncreaterecordProcess(productId, productOperatorId, productName, phoneNumber,destination_amount,destination_currency) { var contact_name = phoneNumber; function sendRequest() { var csrf_test_name = $("#csrf_input").val(); var product = productId; var productText = productName; var repeat = 1; var product_description = productName; var contact_cellphone = phoneNumber; var invoice_id = $("#invoice_id").val(); var postData = { order_id: "", invoice_id: invoice_id, action: "create", csrf_test_name: csrf_test_name, contact_cellphone: contact_cellphone, contact_name: contact_name, product: destination_amount, skuid : productId, product_currency : destination_currency, product_description: product_description, repeat: repeat, plrecharge: 1, use_retail: 1, recharge_type : 'GIFTCARD', account: contact_cellphone, type: productOperatorId, action: 'update' }; $("#csrf_input").val(""); callControllerAction(postData, url + 'recharge/create_recharge_client_asp', function (d) { var get_csrf_hash = ""; if (d.Records.length > 0) { get_csrf_hash = d.Records[0]; } $("#csrf_input").val(get_csrf_hash); var message = "Recharge added with errors."; if (d.Result === "OK") { message = "Recharge added."; $("#cart").removeClass("d-none"); updateCartCount(); var invoice_id = $("#invoice_id").val(); var paymentPageUrl = url + "topup/payment/" + invoice_id; window.location.href = paymentPageUrl; } else { $("#modal_show_error .message").html(d.Description); $("#modal_show_error").modal("show"); } }, 'POST'); } var invoice_id = $("#invoice_id").val(); if (invoice_id != "") { sendRequest(); } else { getInvoiceId(function (d) { if (d.Result == "OK") { sendRequest(); } }); } } function updateCartCount() { $.ajax({ url: url + "recharge/cart_total_items", type: "GET", dataType: "json", success: function(n) { var e = n.itemCount, o = n.invoiceId; $("#lblCartCount").text(e); if (e > 0) { $(".cart-icon").css("display", "inline").attr("href", url + "topup/payment/" + o); $(".menu-show").addClass("d-none").removeClass("d-block d-sm-none"); } else { $(".cart-icon").css("display", "none"); $(".menu-show").removeClass("d-none").addClass("d-block d-sm-none"); } }, error: function(n, e, o) { console.error("Error in AJAX request: ", e, o); } }); } function getInvoiceId(callback) { var csrf_test_name = $("#csrf_input").val(); callControllerAction({ csrf_test_name: csrf_test_name, invoice_action: "code" }, url + 'recharge/create_invoice_ajax', function (d) { if (d.Result != "OK" || d.Records.length < 1) { return; } var code = d.Records[0]; var requesting = $("#invoice_id").data("requesting"); var invoice_id = $("#invoice_id").val(); if (requesting === true || invoice_id != "") { return; } $("#invoice_id").data("requesting", true); callControllerAction({ csrf_test_name: csrf_test_name, invoice_action: "invoice", invoice_code: code }, url + 'recharge/create_invoice_ajax', function (d) { if (d.Result == "OK" || d.Records.length > 0) { var invoice_id = d.Records[0]; $("#invoice_id").val(invoice_id); } if (typeof callback === "function") { callback(d); } }, 'POST'); }, 'POST'); } updateSelections(); init(); });

Error!

Wie funktioniert es?

Senden Sie Aufladungen schnell und einfach. Wir sind führend bei Wiederaufladungen nach Kuba.

Geben Sie die Telefonnummer ein

Wählen Sie Ihr Ziel aus der Länderliste aus. Geben Sie dann die Telefonnummer ein, auf die Sie aufladen möchten.

Wählen Sie den Betrag aus

Überprüfen Sie die verfügbaren Beträge und wählen Sie den Betrag aus, den Sie an Ihr Familienmitglied oder Ihren Freund senden möchten.

Bestätigen Sie Ihre Zahlung

Bezahlen Sie sicher und schnell online.

Was sagen die Leute über uns?

Senden Sie eine Aufladung und erhalten Sie einen großartigen Service von uns.

“Exzellenter Service mit sehr guter Geschwindigkeit, Qualität und Zuverlässigkeit, mit unglaublichem Support, nachdem ich so lange gesucht hatte, dass ich es geschafft habe, diese Website zu finden, die alle meine Erwartungen erfüllt, ehrlich gesagt, sie sind die besten auf dem Markt.”

Daniel aus Kuba

“Hallo, ich bin seit 1 Jahr Kunde dieser Website, ich lade sehr häufig auf, ich hatte nie Probleme, sie sind immer bereit zu helfen, der Service ist sofort verfügbar. Ich glaube nicht, dass es in Bezug auf den Preis und die Benutzerfreundlichkeit eine bessere gibt.”

Frank aus Spanien

“Sehr gute App mit exzellentem Kundenservice. Sie können Ihre Aufladungen und Ihre Kontakte verfolgen. Ich empfehle SuenaCuba immer!!”

Yomary aus den Vereinigten Staaten

“Der Service ist wirklich toll, schnell und sicher, ich nutze ihn ständig. Die App ist einfach zu bedienen, kein Ärger. Gute Arbeit, weiter so Jungs.”

Armando aus Südafrika

Aufladungen, Geschenkkarten, eSIMs und mehr für Kuba und weltweit. Die besten Preise auf dem Markt. (2024)
Top Articles
Jackfruit Stew ~ Vegan Pot Roast Recipe
Mac and Cheese with Sausage and Bell Peppers (30-Minute, One-Pan Recipe)
'That's Hilarious': Ahsoka's Ezra Bridger Actor Reveals Surprising True-To-Life Detail Behind Sabine Reunion Scene
Navin Dimond Net Worth
Wcco Crime News
Syracuse Pets Craigslist
Subfinder Online
Double Helicath Clan Boss
Who Owns Po Box 17316 Salt Lake City Utah
Inmate Inquiry Mendocino
Taterz Salad
What You Need to Know About County Jails
Ucf Off Campus Partners
Northamptonshire | England, Map, History, & Facts
Domains | Hosting | Email | Homepage Baukasten | WordPress
Best Builder Hall 5 Base
Myzmanim Highland Park Nj
Cdn Bustednewspaper
Mogadore Reservoir Boat Rental Price
Four-Legged Friday: Meet Tuscaloosa's Adoptable All-Stars Cub & Pickle
Convert liters to quarts
Kohls Locations Long Island
Zom100 Mangadex
Arch Aplin Iii Felony
Panty Note Manga Online
Maurice hat ein echtes Aggressionsproblem
Hingham Police Scanner Wicked Local
Generac Find My Manual
02080797947
Https //Paperlesspay.talx.com/Gpi
Lehman's Demise and Repo 105: No Accounting for Deception
R Edens Zero
Island Photography Discount Code
Look Who Got Busted New Braunfels
Power Outage Map National Grid
Central Valley growers, undocumented farmworkers condemn Trump's 'emergency'
Chevalier Showtimes Near Island 16 Cinema De Lux
Netronline Historic Aerials
Fgo Spirit Root
JetBlue, Spirit end $3.8 billion merger agreement after losing antitrust suit
Chloe Dicarlo
Promiseb Discontinued
Strange World Showtimes Near Amc Marquis 16
10.4: The Ideal Gas Equation
Scotlynd Ryan Birth Chart
Honquest Obituaries
Brokaw 24 Hour Fitness
Windows 10 schnell und gründlich absichern
Espn Masters Leaderboard
Sesame Street 4323
Larry's Country Diner LIVE! - 2024 Tickets - Branson Travel Office
Local artist makes award-winning reflection of his home, Duluth
Latest Posts
Article information

Author: Ms. Lucile Johns

Last Updated:

Views: 5845

Rating: 4 / 5 (61 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Ms. Lucile Johns

Birthday: 1999-11-16

Address: Suite 237 56046 Walsh Coves, West Enid, VT 46557

Phone: +59115435987187

Job: Education Supervisor

Hobby: Genealogy, Stone skipping, Skydiving, Nordic skating, Couponing, Coloring, Gardening

Introduction: My name is Ms. Lucile Johns, I am a successful, friendly, friendly, homely, adventurous, handsome, delightful person who loves writing and wants to share my knowledge and understanding with you.