Check phone number activity, carrier details, line type and more.
Papua New Guinea SMS Best Practices, Compliance, and Features
Papua New Guinea SMS Market Overview
Locale name:
Papua New Guinea
ISO code:
PG
Region
Oceania
Mobile country code (MCC)
537
Dialing Code
+675
Market Conditions: Papua New Guinea's mobile market is dominated by Digicel PNG, with a significant presence in both urban and rural areas. SMS remains a crucial communication channel due to limited internet infrastructure and smartphone penetration. While OTT messaging apps like WhatsApp are gaining popularity in urban centers, traditional SMS maintains widespread use for business communications and essential services. Android devices dominate the mobile ecosystem due to their affordability and accessibility.
Key SMS Features and Capabilities in Papua New Guinea
Papua New Guinea supports basic SMS functionality with some limitations on advanced features, focusing primarily on standard text message delivery through established carrier networks.
Two-way SMS Support
Two-way SMS is not supported in Papua New Guinea according to current carrier configurations. This limitation affects interactive messaging campaigns and automated response systems.
Concatenated Messages (Segmented SMS)
Support: Concatenated messaging is not supported in Papua New Guinea. Message length rules: Standard SMS length limits apply - 160 characters for GSM-7 encoding. Encoding considerations: Messages using GSM-7 encoding are recommended for optimal delivery and cost-effectiveness.
MMS Support
MMS messages are automatically converted to SMS with an embedded URL link. This conversion ensures message delivery while providing access to multimedia content through web links. Best practice is to use short URLs and include clear instructions for accessing content.
Recipient Phone Number Compatibility
Number Portability
Number portability is not available in Papua New Guinea. This means mobile numbers remain tied to their original carrier, simplifying message routing but limiting consumer flexibility.
Sending SMS to Landlines
Sending SMS to landline numbers is not possible in Papua New Guinea. Attempts to send messages to landline numbers will result in a 400 response with error code 21614, and the message will not be delivered or charged to your account.
Compliance and Regulatory Guidelines for SMS in Papua New Guinea
SMS communications in Papua New Guinea are regulated by the National Information and Communications Technology Authority (NICTA) and the Independent Consumer and Competition Commission (ICCC). While specific SMS marketing regulations are still evolving, operators must adhere to general telecommunications guidelines and international best practices.
Consent and Opt-In
Explicit Consent Requirements:
Obtain clear, documented consent before sending marketing messages
Maintain detailed records of how and when consent was obtained
Include clear terms and conditions during the opt-in process
Provide transparent information about message frequency and purpose
HELP/STOP and Other Commands
All SMS campaigns must support standard STOP and HELP commands
Messages should be in English, Tok Pisin, or Hiri Motu depending on target audience
Common keywords to support:
STOP, UNSUBSCRIBE, END - for opting out
HELP, INFO - for assistance
START, YES - for opting in
Do Not Call / Do Not Disturb Registries
Papua New Guinea does not maintain an official Do Not Call registry. However, businesses should:
Maintain their own suppression lists
Honor opt-out requests within 24 hours
Implement internal do-not-contact databases
Regularly clean contact lists to remove unsubscribed numbers
Time Zone Sensitivity
Papua New Guinea operates in the UTC+10 timezone (PGT). Best practices include:
Sending messages between 8:00 AM and 8:00 PM PGT
Avoiding messages during national holidays
Limiting emergency messages outside these hours
Considering local customs and rest periods
Phone Numbers Options and SMS Sender Types in Papua New Guinea
Alphanumeric Sender ID
Operator network capability: Supported Registration requirements: No pre-registration required; dynamic usage allowed Sender ID preservation: Sender IDs are generally preserved as sent
Long Codes
Domestic vs. International:
Domestic long codes: Supported but limited availability
International long codes: Not officially supported
Sender ID preservation: Original sender IDs are typically preserved Provisioning time: 2-3 business days for domestic long codes Use cases: Ideal for transactional messages and customer support
Short Codes
Support: Short codes are not currently supported in Papua New Guinea Provisioning time: N/A Use cases: N/A
Restricted SMS Content, Industries, and Use Cases
Restricted Industries and Content:
Gambling and betting services
Adult content or explicit material
Unauthorized financial services
Unregistered healthcare products
Political messaging without proper authorization
Content Filtering
Known Carrier Filtering Rules:
Messages containing certain keywords may be blocked
URLs from suspicious domains are filtered
High-volume sending patterns may trigger spam filters
Tips to Avoid Blocking:
Avoid excessive punctuation and special characters
Use approved URL shorteners
Maintain consistent sending patterns
Include clear business identification
Avoid common spam trigger words
Best Practices for Sending SMS in Papua New Guinea
Messaging Strategy
Keep messages under 160 characters when possible
Include clear call-to-actions
Personalize messages with recipient names when appropriate
Maintain consistent branding across messages
Sending Frequency and Timing
Limit marketing messages to 2-4 per month per recipient
Respect local business hours (8:00 AM - 8:00 PM)
Consider cultural events and local holidays
Space out bulk sends to avoid network congestion
Localization
Primary languages: English, Tok Pisin, and Hiri Motu
Consider regional language preferences
Use simple, clear language
Include language preference options in opt-in process
Opt-Out Management
Process opt-outs within 24 hours
Maintain centralized opt-out database
Include clear opt-out instructions in messages
Confirm opt-out requests with acknowledgment message
Testing and Monitoring
Test messages across major carriers (especially Digicel)
Monitor delivery rates and engagement metrics
Track opt-out rates and reasons
Regular testing of opt-out mechanisms
Document and analyze delivery failures
SMS API Integrations for Papua New Guinea
Twilio
Twilio provides robust SMS capabilities for Papua New Guinea through their REST API. Here's how to implement it:
import{ Twilio }from'twilio';// Initialize Twilio client with your credentialsconst client =newTwilio( process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);// Function to send SMS to Papua New GuineaasyncfunctionsendSMSToPNG( to:string, message:string, senderId:string):Promise<void>{try{// Ensure proper formatting for PNG numbers (+675)const formattedNumber = to.startsWith('+675')? to :`+675${to}`;const response =await client.messages.create({ body: message, from: senderId,// Alphanumeric sender ID or Twilio number to: formattedNumber,});console.log(`Message sent successfully! SID: ${response.sid}`);}catch(error){console.error('Error sending message:', error);throw error;}}
Sinch
Sinch offers direct carrier connections for Papua New Guinea. Implementation example:
import{ SinchClient }from'@sinch/sdk';// Initialize Sinch clientconst sinchClient =newSinchClient({ apiKey: process.env.SINCH_API_KEY, apiSecret: process.env.SINCH_API_SECRET,});// Function to send SMS using SinchasyncfunctionsendSinchSMS( recipientNumber:string, messageText:string):Promise<void>{try{const response =await sinchClient.messaging.send({ to:[recipientNumber], message: messageText,// Optional parameters for PNG delivery_report:'summary',// Get delivery status expire_at:'2h',// Message expiry});console.log('Message batch ID:', response.id);}catch(error){console.error('Sinch SMS error:', error);throw error;}}
MessageBird
MessageBird (correcting "Bird" in template) provides SMS services for Papua New Guinea:
// Generic error handlerfunctionhandleSMSError(error:any):void{if(error.code ===21614){console.error('Invalid number format for PNG');}elseif(error.code ===21408){console.error('Message queue full');}else{console.error('Unknown error:', error);}// Log to monitoring service logger.error({ error: error, timestamp:newDate(), service:'sms-service'});}