Check phone number activity, carrier details, line type and more.
Gibraltar (UK) SMS Best Practices, Compliance, and Features
Gibraltar (UK) SMS Market Overview
Locale name:
Gibraltar (UK)
ISO code:
GI
Region
Europe
Mobile country code (MCC)
266
Dialing Code
+350
Market Conditions: Gibraltar, as a British Overseas Territory, has a highly developed mobile telecommunications infrastructure. The market is characterized by high mobile penetration rates and widespread SMS usage for both personal and business communications. While OTT messaging apps like WhatsApp and Facebook Messenger are popular, SMS remains a crucial channel for business communications, particularly for authentication and notifications. The market closely follows UK mobile trends and standards, with a mix of Android and iOS devices in use.
Key SMS Features and Capabilities in Gibraltar
Gibraltar supports standard SMS features including alphanumeric sender IDs and concatenated messages, though two-way SMS functionality is limited.
Two-way SMS Support
Two-way SMS is not supported in Gibraltar through standard API providers. This limitation affects interactive messaging campaigns and automated response systems.
Concatenated Messages (Segmented SMS)
Support: Yes, concatenated messages are supported in Gibraltar, though support may vary by sender ID type. Message length rules: Standard SMS length limits apply - 160 characters for GSM-7 encoding, 70 characters for Unicode. Encoding considerations: Both GSM-7 and UCS-2 (Unicode) encodings are supported, with messages automatically split and rejoined based on the character encoding used.
MMS Support
MMS messages are not directly supported in Gibraltar. Instead, MMS content is automatically converted to SMS with an embedded URL link where recipients can view the multimedia content. This ensures message delivery while maintaining rich media accessibility.
Recipient Phone Number Compatibility
Number Portability
Number portability is not available in Gibraltar. This means mobile numbers remain tied to their original carriers, which simplifies message routing and delivery.
Sending SMS to Landlines
Sending SMS to landline numbers is not supported in Gibraltar. Attempts to send messages to landline numbers will result in a failed delivery and an error response (400 error code 21614) from the API, with no charges incurred.
Compliance and Regulatory Guidelines for SMS in Gibraltar (UK)
Gibraltar follows strict data protection and privacy regulations aligned with both UK and EU standards. The primary regulatory frameworks are the Gibraltar GDPR and the Communications (Personal Data and Privacy) Regulations 2006, overseen by the Gibraltar Regulatory Authority (GRA).
Consent and Opt-In
Explicit Consent Requirements:
Written or electronic consent must be obtained before sending marketing messages
Consent must be specific, unambiguous, and freely given
Records of consent must be maintained and easily accessible
Purpose of messaging must be clearly stated during opt-in
Best Practices for Consent Collection:
Use double opt-in processes for marketing lists
Maintain detailed records of when and how consent was obtained
Clearly explain how the subscriber's data will be used
Provide easy access to privacy policies and terms of service
HELP/STOP and Other Commands
All marketing messages must include clear opt-out instructions
STOP command must be supported and honored immediately
HELP command should provide contact information and service details
Commands should be recognized in both English and Spanish (local languages)
Keywords should be case-insensitive and support common variations
Do Not Call / Do Not Disturb Registries
While Gibraltar doesn't maintain a specific Do Not Call registry, businesses must:
Maintain their own suppression lists
Honor opt-out requests immediately
Remove unsubscribed numbers within 24 hours
Regularly clean contact lists to remove inactive numbers
Document all opt-out requests for compliance purposes
Time Zone Sensitivity
Gibraltar follows Central European Time (CET/CEST):
Restrict marketing messages to 8:00 AM - 9:00 PM local time
Avoid sending during public holidays
Emergency notifications can be sent 24/7
Consider UK time zones for cross-border campaigns
Phone Numbers Options and SMS Sender Types for in Gibraltar (UK)
Alphanumeric Sender ID
Operator network capability: Fully supported Registration requirements: No pre-registration required, dynamic usage allowed Sender ID preservation: Yes, sender IDs are preserved and displayed as sent
Long Codes
Domestic vs. International:
Domestic long codes: Not supported
International long codes: Available but with limitations
Sender ID preservation: Yes, original sender ID is preserved Provisioning time: Immediate for international long codes Use cases: Ideal for transactional messages and two-factor authentication
Short Codes
Support: Not currently supported in Gibraltar Provisioning time: N/A Use cases: N/A
Financial services (must comply with GFSC regulations)
Healthcare Communications:
Must comply with patient confidentiality requirements
Cannot contain sensitive medical information
Should use secure messaging channels when possible
Content Filtering
Known Carrier Filters:
URLs from unknown domains
Multiple exclamation marks
ALL CAPS messages
Excessive special characters
Best Practices to Avoid Filtering:
Use registered URL shorteners
Maintain consistent sender IDs
Avoid spam trigger words
Keep message content professional and clear
Best Practices for Sending SMS in Gibraltar (UK)
Messaging Strategy
Keep messages under 160 characters when possible
Include clear calls-to-action
Personalize messages using recipient's name
Maintain consistent branding across messages
Sending Frequency and Timing
Limit marketing messages to 2-4 per month
Respect quiet hours (9 PM - 8 AM)
Consider local events and holidays
Space out messages to avoid overwhelming recipients
Localization
Primary language: English
Consider Spanish for broader reach
Use local date and time formats
Respect cultural sensitivities
Opt-Out Management
Process opt-outs within 24 hours
Maintain centralized opt-out database
Confirm opt-out with final message
Regular audit of opt-out compliance
Testing and Monitoring
Test across major local carriers
Monitor delivery rates daily
Track engagement metrics
Regular A/B testing of message content
SMS API integrations for Gibraltar (UK)
Twilio
Twilio provides a robust SMS API with comprehensive support for Gibraltar messaging. Integration requires your Account SID and Auth Token from the Twilio Console.
import*as Twilio from'twilio';// Initialize client with your credentialsconst client =newTwilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);// Function to validate Gibraltar phone numbersconst validateGibraltarNumber =(phoneNumber:string):boolean=>{return/^\+350[0-9]{8}$/.test(phoneNumber);};// Send SMS function with error handlingasyncfunctionsendSMS(to:string, message:string, from:string){try{if(!validateGibraltarNumber(to)){thrownewError('Invalid Gibraltar phone number format');}const response =await client.messages.create({ body: message, to: to,// Gibraltar number in E.164 format: +350XXXXXXXX from:from// Your verified sender ID});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 for reliable message delivery to Gibraltar. Authentication uses a service plan ID and API token.