Check phone number activity, carrier details, line type and more.
Italy SMS Best Practices, Compliance, and Features
Italy SMS Market Overview
Locale name:
Italy
ISO code:
IT
Region
Europe
Mobile country code (MCC)
222
Dialing Code
+39
Market Conditions: Italy has a mature mobile market with high SMS adoption rates. The country's main mobile operators include TIM (Telecom Italia), Vodafone Italia, and Wind Tre. While OTT messaging apps like WhatsApp and Facebook Messenger are popular, SMS remains crucial for business communications and authentication. The mobile market shows a relatively even split between Android (approximately 75%) and iOS (approximately 25%) users, with strong penetration of both platforms.
Key SMS Features and Capabilities in Italy
Italy offers comprehensive SMS capabilities including two-way messaging, concatenated messages, and number portability, though with some specific restrictions on timing and content.
Two-way SMS Support
Two-way SMS is fully supported in Italy, allowing businesses to engage in interactive messaging with customers. There are no specific restrictions beyond standard compliance requirements for marketing messages.
Concatenated Messages (Segmented SMS)
Support: Yes, concatenation is fully supported across Italian networks, 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: Both GSM-7 and UCS-2 encodings are supported. Messages using special characters will automatically use UCS-2 encoding, reducing the character limit per segment.
MMS Support
MMS messages sent to Italian numbers are automatically converted to SMS with an embedded URL link to access the multimedia content. This ensures compatibility across all devices while maintaining the ability to share rich media content.
Recipient Phone Number Compatibility
Number Portability
Number portability is available in Italy, allowing users to keep their phone numbers when switching carriers. This feature is fully supported and does not affect SMS delivery or routing.
Sending SMS to Landlines
Sending SMS to landline numbers is not supported in Italy. Attempts to send messages to landline numbers will result in a 400 response error (code 21614) through the API, with no message delivery and no charges applied.
Compliance and Regulatory Guidelines for SMS in Italy
Italy follows strict telecommunications regulations governed by AGCOM (Autorità per le Garanzie nelle Comunicazioni) and adheres to GDPR requirements. The Italian Communications Authority resolution 42/13/CIR specifically regulates business messaging services and the use of alphanumeric sender IDs.
Consent and Opt-In
Explicit consent is mandatory under both Italian law and GDPR. You must:
Obtain clear, specific consent before sending marketing messages
Maintain detailed records of when and how consent was obtained
Provide clear information about the type and frequency of messages
Allow users to withdraw consent easily at any time
Document consent in a way that demonstrates GDPR compliance
HELP/STOP and Other Commands
All marketing messages must include opt-out instructions
STOP commands must be honored immediately
Support for both Italian and English keywords is recommended:
STOP/FERMA
HELP/AIUTO
INFO
Messages should be processed in both uppercase and lowercase
Do Not Call / Do Not Disturb Registries
Italy maintains the "Registro Pubblico delle Opposizioni" (Public Opposition Register):
Businesses must check numbers against this registry before sending marketing messages
Regular updates of suppression lists are required
Maintain internal opt-out databases separate from the public registry
Best Practice: Update your blocked numbers list daily
Time Zone Sensitivity
Italy has specific time restrictions for marketing messages:
Prohibited Times:
10 PM to 8 AM local time
All day on Sundays
Best Practice: Send messages between 10 AM and 8 PM on weekdays
Emergency and service-related messages are exempt from these restrictions
Phone Numbers Options and SMS Sender Types for Italy
Alphanumeric Sender ID
Operator network capability: Fully supported Registration requirements: No pre-registration required, but must comply with AGCOM guidelines Sender ID preservation: Yes, displayed as-is when compliant with regulations Length: Maximum 11 characters, alphanumeric
Long Codes
Domestic vs. International:
Domestic: Fully supported
International: Not supported directly; messages are delivered with local sender ID
Sender ID preservation:
Domestic: Yes
International: No, replaced with alphanumeric or local numeric sender ID
Provisioning time: Immediate for domestic numbers Use cases: Ideal for two-way communication and customer service
Short Codes
Support: Yes, available through major carriers Provisioning time: 7-9 weeks Use cases:
High-volume marketing campaigns
Two-factor authentication
Customer service
Premium SMS services
Restricted SMS Content, Industries, and Use Cases
Prohibited Content:
Cannabis-related content (strictly forbidden)
Gambling without proper licensing
Adult content
Unauthorized financial services
Regulated Industries:
Financial services require regulatory disclaimers
Healthcare messages must comply with privacy regulations
Insurance services need specific authorizations
Content Filtering
Carrier Filtering Rules:
Messages containing certain keywords may be blocked
URLs should be from reputable domains
Excessive punctuation may trigger spam filters
Best Practices to Avoid Blocking:
Avoid URL shorteners when possible
Use consistent sender IDs
Maintain regular sending patterns
Keep content professional and clear
Best Practices for Sending SMS in Italy
Messaging Strategy
Keep messages under 160 characters when possible
Include clear call-to-actions
Personalize messages using recipient's name
Maintain consistent branding
Sending Frequency and Timing
Limit to 2-3 marketing messages per week
Respect Italian business hours (8 AM - 8 PM)
Consider Italian holidays and local events
Space out messages to avoid overwhelming recipients
Localization
Default to Italian for all marketing messages
Offer language preference selection
Consider regional dialects for targeted campaigns
Use proper Italian formatting for dates and numbers
Opt-Out Management
Process opt-outs within 24 hours
Maintain centralized opt-out database
Confirm opt-out with one final message
Regular audit of opt-out lists
Testing and Monitoring
Test across all major Italian carriers (TIM, Vodafone, Wind Tre)
Monitor delivery rates by carrier
Track engagement metrics
Regular testing of opt-out functionality
SMS API integrations for Italy
Twilio
Twilio provides a robust SMS API with comprehensive support for Italian messaging requirements. Integration requires an account SID and auth token for authentication.
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 Italian numberasyncfunctionsendSMSToItaly( to:string, message:string, senderId:string):Promise<void>{try{// Ensure proper formatting for Italian numbersconst formattedNumber = to.startsWith('+39')? to :`+39${to}`;const response =await client.messages.create({ body: message, from: senderId,// Alphanumeric sender ID or Twilio number to: formattedNumber,// Optional parameters for delivery tracking statusCallback:'https://your-webhook.com/status'});console.log(`Message sent successfully! SID: ${response.sid}`);}catch(error){console.error('Error sending message:', error);}}
Sinch
Sinch offers direct carrier connections in Italy with support for alphanumeric sender IDs and delivery reporting.