Check phone number activity, carrier details, line type and more.
Switzerland SMS Best Practices, Compliance, and Features
Switzerland SMS Market Overview
Locale name:
Switzerland
ISO code:
CH
Region
Europe
Mobile country code (MCC)
228
Dialing Code
+41
Market Conditions: Switzerland has a highly developed mobile market with near-universal smartphone penetration. The country's main mobile operators include Swisscom, Sunrise, and Salt, providing extensive network coverage. While OTT messaging apps like WhatsApp and iMessage are popular, SMS remains a crucial channel for business communications, particularly for authentication, alerts, and official notifications. The market shows a relatively even split between Android and iOS devices, with a slight preference for iOS among Swiss consumers.
Key SMS Features and Capabilities in Switzerland
Switzerland offers comprehensive SMS capabilities including two-way messaging, concatenated messages, and number portability, though MMS is handled through SMS conversion with URL links.
Two-way SMS Support
Switzerland fully supports two-way SMS communications with no specific restrictions. This enables interactive messaging scenarios like customer support, appointment confirmations, and automated response systems.
Concatenated Messages (Segmented SMS)
Support: Yes, concatenation is supported across all major carriers, though support may vary by sender ID type. Message length rules: Standard SMS length of 160 characters for GSM-7 encoding, 70 characters for UCS-2 encoding before splitting occurs. Encoding considerations: Messages using GSM-7 encoding can be concatenated up to 153 characters per segment, while UCS-2 encoded messages allow 67 characters per segment.
MMS Support
MMS messages are not directly supported in Switzerland. Instead, they are automatically converted to SMS messages containing a URL link to view the multimedia content. This ensures compatibility while still enabling the sharing of images, videos, and other media content.
Recipient Phone Number Compatibility
Number Portability
Number portability is fully available in Switzerland, allowing users to keep their phone numbers when switching between mobile operators. This feature does not affect SMS delivery or routing, as the Swiss telecommunications infrastructure handles number porting seamlessly.
Sending SMS to Landlines
Sending SMS to landline numbers is not supported in Switzerland. Attempts to send messages to landline numbers will result in a failed delivery, specifically generating a 400 response with error code 21614. These messages will not appear in logs, and no charges will be incurred.
Compliance and Regulatory Guidelines for SMS in Switzerland
Switzerland enforces strict data protection and privacy regulations through the Federal Act on Data Protection (FADP) and the Swiss Federal Act Against Unfair Competition (UCA). The Federal Office of Communications (OFCOM) oversees telecommunications regulations, while the Federal Data Protection and Information Commissioner (FDPIC) monitors data privacy compliance.
Consent and Opt-In
Explicit Consent Requirements:
Written or electronic confirmation of opt-in is mandatory before sending marketing messages
Pre-checked boxes or implied consent are not sufficient
Maintain detailed records of when and how consent was obtained
Purpose of messaging must be clearly stated during opt-in process
Best Practices for Consent:
Use double opt-in verification
Store consent timestamps and methods
Regularly update consent records
Provide clear privacy policy references
HELP/STOP and Other Commands
Required Keywords:
STOP/STOPP (German)
ARRÊT (French)
STOP (Italian)
HELP/HILFE/AIDE/AIUTO
Messages must include opt-out instructions in the primary language of the region being targeted. Switzerland's multilingual nature requires support for commands in German, French, and Italian.
Do Not Call / Do Not Disturb Registries
Switzerland does not maintain a centralized Do Not Call registry for SMS. However, businesses must:
Maintain their own suppression lists
Honor opt-out requests within 24 hours
Implement proactive filtering of previously opted-out numbers
Document all opt-out requests for compliance purposes
Time Zone Sensitivity
Switzerland observes Central European Time (CET/CEST). While there are no strict legal time restrictions for SMS, recommended sending hours are:
Weekdays: 8:00 AM to 8:00 PM CET
Weekends: 9:00 AM to 6:00 PM CET
Holidays: Avoid sending unless urgent
Phone Numbers Options and SMS Sender Types for Switzerland
Alphanumeric Sender ID
Operator network capability: Fully supported across all major Swiss carriers Registration requirements: Pre-registration not required, dynamic usage supported Sender ID preservation: Sender IDs are preserved and displayed as-is to recipients
Long Codes
Domestic vs. International: Both domestic and international long codes are supported Sender ID preservation: Original sender IDs are preserved across all carriers Provisioning time: Immediate to 24 hours Use cases: Ideal for two-way communication, customer support, and transactional messages
Short Codes
Support: Not currently supported in Switzerland Provisioning time: N/A Use cases: N/A
Restricted SMS Content, Industries, and Use Cases
Prohibited Content:
Cannabis-related content
Illegal substances
Hate speech
Unauthorized gambling services
Adult content
Cryptocurrency promotions without proper licensing
Regulated Industries:
Financial services require FINMA compliance
Healthcare messages must comply with HPA regulations
Insurance-related messages need FINMA authorization
Content Filtering
Carrier Filtering Rules:
URLs from unknown domains may be blocked
Messages containing specific keywords related to restricted content
High-frequency sending patterns
Tips to Avoid Blocking:
Use registered domains for URLs
Avoid spam trigger words
Maintain consistent sending patterns
Include clear sender identification
Keep URLs to a minimum per message
Best Practices for Sending SMS in Switzerland
Messaging Strategy
Keep messages under 160 characters when possible
Include clear call-to-actions
Personalize using recipient's name and relevant details
Maintain professional tone and language
Sending Frequency and Timing
Limit to 2-4 messages per month per recipient
Respect Swiss holidays and cultural events
Avoid sending during early morning or late evening
Space out bulk campaigns to prevent network congestion
Localization
Support all national languages: German, French, Italian
Match message language to recipient's region
Consider Romansh for messages in Graubünden
Use appropriate date and time formats (DD.MM.YYYY)
Opt-Out Management
Process opt-outs within 24 hours
Maintain centralized opt-out database
Confirm opt-out with acknowledgment message
Regular audit of opt-out list compliance
Testing and Monitoring
Test across all major Swiss carriers
Monitor delivery rates by carrier
Track engagement metrics
Regular testing of opt-out functionality
A/B test message content and timing
SMS API integrations for Switzerland
Twilio
Twilio provides a robust SMS API with comprehensive Swiss market support. Authentication uses Account SID and Auth Token credentials.
import{ Twilio }from'twilio';// Initialize client with your credentialsconst client =newTwilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);// Function to send SMS to Swiss numbersasyncfunctionsendSwissSMS(to:string, message:string){try{// Format Swiss numbers to E.164 format (+41...)const formattedNumber = to.startsWith('+41')? to :`+41${to.replace(/^0/,'')}`;const response =await client.messages.create({ body: message, to: formattedNumber, from:'YOUR_SENDER_ID',// Alphanumeric or phone number// Optional: Set status callback URL statusCallback:'https://your-domain.com/sms/status'});console.log(`Message sent successfully! SID: ${response.sid}`);return response;}catch(error){console.error('Error sending message:', error);throw error;}}
Sinch
Sinch offers direct carrier connections in Switzerland with support for alphanumeric sender IDs.