0
Due to an ongoing issue with our webshop provider, the online shop is currently experiencing limited functionality. Our sales team is happy to help! (As of 28 August 2026)
var search = location.search.substring(1); if(search) { var urlParams = JSON.parse('{"' + search.replace(/&/g, '","').replace(/=/g,'":"') + '"}', function(key, value) { return key===""?value:decodeURIComponent(value) }) if(urlParams.hasOwnProperty('productID')) { $('#Artikel-ID').val(urlParams.productID); } if(urlParams.hasOwnProperty('productName')) { $('#Artikel-Name').val(urlParams.productName); } }
NEED HELP?
Contact & Support

A ticketing system has a lot of advantages compared to the standard mails. We use them to your advantage.

For you a ticket means, that we can help you faster and better. I'ts that easy! For us it means faster assignment, simultaneous processing by our staff and much more...

document.addEventListener("DOMContentLoaded", () => { const consentWrapper = document.getElementById("consentWrapper"); const checkbox = document.getElementById("consentCheckbox"); // Check if consent is already set const isAlreadyConsented = ceresStore?.getters?.isConsented("media.reCaptcha"); // Show the element only if consent is not set if (!isAlreadyConsented) { consentWrapper.style.display = "block"; } // Event listener for checkbox change checkbox.addEventListener("change", (event) => { const isChecked = event.target.checked; // Commit the Vuex mutation to toggle consent ceresStore?.commit("toggleConsent", "media.reCaptcha"); // Commit the changes to save the updated consents ceresStore?.commit("storeConsents"); console.log("Consent state updated:", isChecked); }); });

Live-Chat

We are testing a new chat system! Click on the "Support" button at the bottom right to go to our support tool with built-in chat. If someone is available, you will be offered the chat under "Support"!

General inquiries mail@servershop24.de
Service & Support support@servershop24.de
Do you want to offer hardware to us? einkauf@servershop24.de
Accounting buchhaltung@servershop24.de
Applications or personnel questions personal@servershop24.de

You can also reach us by phone.

DE +49 8752 866 404 - 00 Zentrale
AT +43 13850415
CH +41 445220489
UK +44 2034990285
Sales +49 8752 866 404 - 30
Technical Support +49 8752 866 404 - 31
Logistics +49 8752 866 404 - 34
Fax +49 8752 866 404 - 48
document.addEventListener('DOMContentLoaded', function() { let subform = document.getElementById('custom-sib-form'); subform.addEventListener('submit', function (event) { event.preventDefault(); var form = event.target; var formData = new FormData(form); fetch(form.action, { method: form.method, body: new URLSearchParams(formData).toString(), headers: { 'Content-Type': 'application/x-www-form-urlencoded' } }) .then(data => { document.getElementById('form-response').style.display = 'block'; form.querySelector('button[type="submit"]').disabled = true; form.querySelector('button[type="submit"]').style.opacity = 0.8; document.getElementById('form-response').style.color = '#17ca17'; document.getElementById('form-response').innerText = "You have successfully subscribed to the newsletter"; }) .catch(error => { console.log(error) }); }); })