How to Send SMS using Email? Guide
Follow XIT on medium & UglyCompany on Telegram for more..
Sending SMS using SMTP involves sending a text message to a mobile phone using Simple Mail Transfer Protocol (SMTP). In this method, emails are sent to the mobile carrier’s email-to-SMS gateway, which then converts the message into an SMS and sends it to the intended recipient’s mobile phone.
I will attach the complete list of email format with carrier domain for each country & network provider at the end of this blog.
Does sending SMS using SMTP works for all countries?
Any nation with a mobile carrier that supports email-to-SMS gateways can use SMTP to SMS service. However, this service’s availability can fluctuate based on the carrier and the nation.
Email-to-SMS gateways may not be available or restricted to particular carriers or plans in some nations. In other circumstances, the gateway may be accessible, but additional setup or configuration, such as the addition of an email address prefix or suffix, may be required.
Before implementing this method of SMS sending, it is essential to investigate and confirm the availability of email-to-SMS gateways for the specific carrier and country you are targeting.
What things we need for sending SMS using SMTP?
We need Phone Number, Carrier Domain, Network Provider Information, SMTP, Activation code (if required).
REMEMBER: It is against the law to use this SMTP2SMS sending program for unethical activities like spamming & phishing.
Let’s talk about the code </>
Firstly, I wrote a very basic code using python which allowed me to send SMS to my phone using the SMTP. Later I updated it and added more features as given below:
Input Validation: Added input validation feature to ensure that the entered email address and phone number are in the correct format also to check that the carrier domain is valid.
User Interface: Created a user interface for our SMTP2SMS sender which allows us to enter the email and phone number data and the message. (I used Tkinter here, but you can even use PyQt to make it more attractive)
Configuration File: Added the ability to save the SMTP server, port number, sender email, password, and carrier domain to a configuration file so that the we does not need to enter this information every time.
Error Handling: Added error handling to handle exceptions that may occur during the SMTP connection or SMS sending process, such as authentication errors, SMTP server errors, or network errors.
Logging: Added logging feature to record the date and time of each SMS sent and also the errors that occur during the process.
Below is the source for SMTP2SMS sending, you need to save the first file as anyname.py & the second file as config.ini . The log file will be created automatically.
# SHHH! XIT WAS HERE
import re
import smtplib
import configparser
import logging
from tkinter import *
# Set up logging
logging.basicConfig(filename='sms_sender.log', level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
# Load configuration file
config = configparser.ConfigParser()
config.read('config.ini')
# Get SMTP server and port number from configuration file
smtp_server = config['DEFAULT']['SMTP_SERVER']
smtp_port = config['DEFAULT']['SMTP_PORT']
# Set the recipient phone number and carrier domain
recipient_phone_number = ''
carrier_domain = ''
# Validate phone number and carrier domain
def validate_input():
global recipient_phone_number, carrier_domain
phone_number = phone_number_entry.get()
carrier_domain = carrier_domain_entry.get()
# Validate phone number
phone_number_pattern = re.compile(r'^\d{10}$')
if not phone_number_pattern.match(phone_number):
logging.error('Invalid phone number: ' + phone_number)
error_label.config(text='Invalid phone number. Must be 10 digits.')
return
recipient_phone_number = phone_number
# Validate carrier domain
if not carrier_domain:
logging.error('Carrier domain is empty')
error_label.config(text='Carrier domain is required.')
return
success_label.config(text='Phone number and carrier domain validated successfully.')
# Send the SMS
def send_sms():
global recipient_phone_number, carrier_domain
# Get login credentials from configuration file
sender_email = config['DEFAULT']['SENDER_EMAIL']
sender_password = config['DEFAULT']['SENDER_PASSWORD']
# Set the SMS message
message = message_entry.get()
# Set the recipient email address by combining the recipient phone number and carrier domain
recipient_email = recipient_phone_number + '@' + carrier_domain
# Set the SMTP connection
try:
smtp_connection = smtplib.SMTP(smtp_server, smtp_port)
smtp_connection.starttls()
smtp_connection.login(sender_email, sender_password)
# Send the SMS
smtp_connection.sendmail(sender_email, recipient_email, message)
# Close the SMTP connection
smtp_connection.quit()
success_label.config(text='SMS sent successfully!')
logging.info('SMS sent to ' + recipient_phone_number)
except Exception as e:
logging.error('Error sending SMS: ' + str(e))
error_label.config(text='Error sending SMS: ' + str(e))
# Create the user interface
root = Tk()
root.title('SMTP2SMS Sender')
# Phone number label and entry
phone_number_label = Label(root, text='Phone Number:')
phone_number_label.grid(row=0, column=0, padx=5, pady=5)
phone_number_entry = Entry(root)
phone_number_entry.grid(row=0, column=1, padx=5, pady=5)
#Carrier domain label and entry
carrier_domain_label = Label(root, text='Carrier Domain:')
carrier_domain_label.grid(row=1, column=0, padx=5, pady=5)
carrier_domain_entry = Entry(root)
carrier_domain_entry.grid(row=1, column=1, padx=5, pady=5)
#Message label and entry
message_label = Label(root, text='Message:')
message_label.grid(row=2, column=0, padx=5, pady=5)
message_entry = Entry(root)
message_entry.grid(row=2, column=1, padx=5, pady=5)
#Validate button
validate_button = Button(root, text='Validate', command=validate_input)
validate_button.grid(row=3, column=0, padx=5, pady=5)
#Send button
send_button = Button(root, text='Send SMS', command=send_sms)
send_button.grid(row=3, column=1, padx=5, pady=5)
#Error label and success label
error_label = Label(root, fg='red')
error_label.grid(row=4, column=0, columnspan=2, padx=5, pady=5)
success_label = Label(root, fg='green')
success_label.grid(row=5, column=0, columnspan=2, padx=5, pady=5)
#Run the user interface
root.mainloop()
config.ini source
[DEFAULT]
SMTP_SERVER = smtp.example.com
SMTP_PORT = 587
SENDER_EMAIL = sender@example.com
SENDER_PASSWORD = mypassword
Below is the complete list of email format with carrier domain for each country & network provider:
+-----+--------------------------------------------+------------------------+--------------------------------------------------+------------------------------------------------------------------+
| ID | Provider | Country | Email Format with carrier domain | Activation (No activation required for those kept blank) |
+-----+--------------------------------------------+------------------------+--------------------------------------------------+------------------------------------------------------------------+
| 1 | Bluesky Communications | American Samoa | #######@psms.bluesky.as | |
| 2 | CTI Movil | Argentina | ##########@sms.ctimovil.com.ar | |
| 3 | Movistar | Argentina | ##########@sms.movistar.net.ar | |
| 4 | Nextel | Argentina | ##########@TwoWay.11nextel.net.ar | |
| 5 | Setar | Aruba | 297##########@mas.aw | |
| 6 | Optus Mobile | Australia | 0##########@optusmobile.com.au | |
| 7 | Telstra | Australia | ##########@online.telstra.com.au | |
| 8 | MaxMobil | Austria | ##########@maxmail.at | |
| 9 | One Connect | Austria | ##########@onemail.at | |
| 10 | T-Mobile | Austria | 43##########@sms.t-mobile.at | |
| 11 | MTS | Belarus | #########@sms.mts.by | |
| 12 | Mobistar | Belgium | ########@mobistar.be | |
| 13 | Mobility | Bermuda | #######@ml.bm | |
| 14 | BH Mobile (BH Telecom) | Bosnia and Herzegovina | 387##########@sms.bhmobile.ba | send any text to 061 1103 |
| 15 | Claro | Brazil | ##########@clarotorpedo.com.br | |
| 16 | Nextel | Brazil | ##########@nextel.com.br | |
| 17 | Telenor Bulgaria | Bulgaria | 359#########@sms.telenor.bg | activation with sms to 1552 with text OPEN |
| 18 | Mtel | Bulgaria | 35988##########@sms.mtel.net | activation url is http://www.mtel.bg/mail2sms/index.php |
| 19 | Vivacom | Bulgaria | 359##########@sms.vivacom.bg | |
| 20 | Bell | Canada | ##########@txt.bell.ca | |
| 21 | Bell Mobility | Canada | ##########@txt.bellmobility.ca | |
| 22 | Koodo Mobile | Canada | ##########@msg.koodomobile.com | |
| 23 | Fido (Microcell) | Canada | ##########@fido.ca | |
| 24 | Manitoba Telecom Systems | Canada | ##########@text.mtsmobility.com | |
| 25 | NBTel | Canada | ##########@wirefree.informe.ca | |
| 26 | PageNet | Canada | ##########@pagegate.pagenet.ca | |
| 27 | Rogers | Canada | ##########@pcs.rogers.com | |
| 28 | Sasktel | Canada | ##########@sms.sasktel.com | |
| 29 | Telus | Canada | ##########@msg.telus.com | |
| 30 | Virgin Mobile | Canada | ##########@vmobile.ca | |
| 31 | Bell South | Chile | ##########@bellsouth.cl | |
| 32 | China Mobile | China | ##########@139.com | |
| 33 | Comcel | Colombia | ##########@comcel.com.co | |
| 34 | Movistar | Colombia | ##########@movistar.com.co | |
| 35 | Tigo | Colombia | ##########@sms.colombiamovil.com.co | |
| 36 | ICE | Costa Rica | ##########@ice.cr | |
| 37 | T-Mobile | Croatia | 385##########@sms.t-mobile.hr | |
| 38 | Eurotel | Czech Republic | +ccaa#########@sms.eurotel.cz | |
| 39 | O2 | Czech Republic | 00420#########@sms.cz.o2.com | |
| 40 | Oskar | Czech Republic | #########@mujoskar.cz | |
| 41 | Sonofon | Denmark | ########@note.sonofon.dk | |
| 42 | Tele Danmark Mobil | Denmark | ########@sms.tdk.dk | |
| 43 | Telia Denmark | Denmark | ########@gsm1800.telia.dk | |
| 44 | Digicel | Dominica | #######@digitextdm.com | |
| 45 | Claro Codetel | Dominican Republic | #######@claro.net.do | |
| 46 | Tricom | Dominican Republic | #######@movil.tricom.net | |
| 47 | EMT | Estonia | ########@sms.emt.ee | |
| 48 | Orange | France | ##########@orange.fr | |
| 49 | SFR | France | #########@sfr.fr | |
| 50 | Georgia geocell | Georgia | 0##########@sms.ge | |
| 51 | E-Plus | Germany | 0##########.smseplus.de | send START to 7676245 |
| 52 | Mobilis | Germany | 0##########@mobilis.de | |
| 53 | Mannesmann Mobilefunk | Germany | ##########@d2-message.de | |
| 54 | O2 | Germany | 0##########@o2online.de | send +OPEN to 6245 |
| 55 | Simyo | Germany | ##########@eplus.de | |
| 56 | T-Mobile | Germany | +49##########@t-d1-sms.de | send OPEN to 8000 |
| 57 | Vodafone | Germany | 0##########@vodafone-sms.de | send OPEN to 3400 |
| 58 | CSL | Hong Kong | ##########@mgw.mmsc1.hkcsl.com | |
| 59 | PGSM | Hungary | 36#########@sms.pgsm.hu | |
| 60 | OgVodafone | Iceland | ##########@sms.is | |
| 61 | Siminn | Iceland | ##########@box.is | |
| 62 | Aircel | India | ##########@aircel.co.in | |
| 63 | Aircel Tamil Nadu | India | ##########@airsms.com | |
| 64 | AirTel | India | 91##########@airtelmail.com | |
| 65 | AirTel Andhra Pradesh | India | 91##########@airtelap.com | |
| 66 | AirTel Kerala | India | 91##########@airtelkerala.com | |
| 67 | AirTel Kolkata | India | 91##########@airtelkol.com | |
| 68 | AirTel Tamil Nadu | India | 91##########@airtelmobile.com | |
| 69 | BPL mobile | India | ##########@bplmobile.com | |
| 70 | Celforce / Fascel | India | ##########@celforce.com | |
| 71 | Chennai Skycell / Airtel | India | 91##########@airtelchennai.com | |
| 72 | Escotel | India | ##########@escotelmobile.com | |
| 73 | Idea Cellular | India | ##########@ideacellular.net | |
| 74 | Orange | India | ##########@orangemail.co.in | |
| 75 | Meteor | Ireland | #########@mms.mymeteor.ie | |
| 76 | Cellcom | Israel | ##########@cellcom.co.il | |
| 77 | Israel Orange IL | Israel | ##########@shiny.co.il | |
| 78 | Spikko | Israel | ##########@spikosms.com | |
| 79 | Omnitel | Italy | 0##########@mail.omnitel.it | |
| 80 | Telecom Italia Mobile | Italy | 0##########@timnet.com | |
| 81 | Vodafone | Italy | ##########@sms.vodafone.it | |
| 82 | Vodafone Omnitel | Italy | ##########@vizzavi.it | |
| 83 | Wind | Italy | ##########@txt.windmobile.it | |
| 84 | Digicel | Jamaica | 1876##########@digitextjm.com | |
| 85 | AU by KDDI | Japan | ##########@ezweb.ne.jp | |
| 86 | NTT DoCoMo | Japan | ##########@docomo.ne.jp | |
| 87 | Vodafone Chuugoku/Western | Japan | ##########@n.vodafone.ne.jp | |
| 88 | Vodafone Hokkaido | Japan | ##########@d.vodafone.ne.jp | |
| 89 | Vodafone Hokuriko/Central North | Japan | ##########@r.vodafone.ne.jp | |
| 90 | Vodafone Kansai/West,Osaka | Japan | ##########@k.vodafone.ne.jp | |
| 91 | Vodafone Kanto/Koushin/East,Tokyo | Japan | ##########@t.vodafone.ne.jp | |
| 92 | Vodafone Kyuushu/Okinawa | Japan | ##########@q.vodafone.ne.jp | |
| 93 | Vodafone Shikoku | Japan | ##########@s.vodafone.ne.jp | |
| 94 | Vodafone Touhoku/Niigata/North | Japan | ##########@h.vodafone.ne.jp | |
| 95 | Vodafone Toukai/Central | Japan | ##########@c.vodafone.ne.jp | |
| 96 | Willcom | Japan | ##########@pdx.ne.jp | |
| 97 | Willcom di | Japan | ##########@di.pdx.ne.jp | |
| 98 | Willcom dj | Japan | ##########@dj.pdx.ne.jp | |
| 99 | Willcom dk | Japan | ##########@dk.pdx.ne.jp | |
| 100 | Bite | Latvia | 371#########@biteplus.lv | |
| 101 | Kyivstar | Latvia | #########@smsmail.lmt.lv | |
| 102 | LMT | Latvia | #########@sms.lmt.lv | |
| 103 | Tele2 | Latvia | 371#########@sms.tele2.lv | send text 'ON' to 1612. |
| 104 | Cellis / LibanCell | Lebanon | 961#######@ens.jinny.com.lb | |
| 105 | Bite GSM | Lithuania | ##########@sms.bite.lt, 3706#######@biteplius.lt | |
| 106 | Labas | | Lithuania | 3706#######@labas.lt |
| 107 | Omnitel / Telia | Lithuania | 3706#######@sms.omnitel.lt | not working from 2017 |
| 108 | Tele2 | Lithuania | 3706#######@sms.tele2.lt | not working not working from 2002 |
| 109 | P&T Luxembourg | Luxembourg | #########@sms.luxgsm.lu | |
| 110 | Celcom | Malaysia | 0#########@sms.celcom.com.my | |
| 111 | Emtel | Mauritius | ##########@emtelworld.net | |
| 112 | Nextel | Mexico | ##########@msgnextel.com.mx | |
| 113 | Iusacell | Mexico | ##########@rek2.com.mx | |
| 114 | Telcel(America Movil) | Mexico | ##########@itelcel.com | |
| 115 | Ncell (Mero Mobile) | Nepal | +977##########@sms.ncell.com.np | |
| 116 | Dutchtone / Orange-NL | Netherlands | 0#########@sms.orange.nl | |
| 117 | T-Mobile | Netherlands | 31########@gin.nl | send EMAIL ON to 555 |
| 118 | Telecom New Zealand | New Zealand | ##########@etxt.co.nz | |
| 119 | Vodafone | New Zealand | ##########@mtxt.co.nz | |
| 120 | Claro | Nicaragua | ##########@ideasclaro-ca.com | |
| 121 | Netcom | Norway | ########@sms.netcom.no | |
| 122 | Telenor | Norway | ########@mobilpost.no | |
| 123 | Telenor 2 | Norway | ########@gsm-tekst.telemax.no | |
| 124 | Mobilink | Pakistan | ##########@mobilinkgsm.com | |
| 125 | Warid | Pakistan | ##########@waridtel.com | |
| 126 | ZONG | Pakistan | ##########@zongsms.pk | |
| 127 | Cable and Wireless | Panama | ##########@cwmovil.com | |
| 128 | Globe Telecom | Philippines | 63##########@pmms.globe.com.ph | send text 'ON' to 2300 |
| 129 | Sun Communications | Philippines | 63##########@mms.suncellular.com.ph | |
| 130 | Smart Cellular | Philippines | 63##########@smart.mms.ph | send text 'ON' to 200 |
| 131 | Orange Polska | Poland | #########@orange.pl | |
| 132 | Plus GSM | Poland | +48#########@text.plusgsm.pl | |
| 133 | Optimus | Portugal | #########@sms.optimus.pt | |
| 134 | Telcel (TMN) | Portugal | #########@sms.telecel.pt | |
| 135 | Claro | Puerto Rico | #######@vtexto.com | |
| 136 | Open Mobile | Puerto Rico | #######@email.openmobilepr.com | |
| 137 | AKOS | Russia | +7##########@sms.akos.ru | |
| 138 | BaikalWestCom | Russia | ##########@sms.bwc.ru | |
| 139 | BeeLine GSM | Russia | 7##########@sms.beemail.ru | call 06849909 |
| 140 | Megafon Center | Russia | 7##########@sms.megafoncenter.ru | |
| 141 | Megafon Volga | Russia | 7##########@sms.mgsm.ru | |
| 142 | MTS | Russia | 7##########@sms.mts.ru | |
| 143 | Personal Communication | Russia | ##########@sms@pcom.ru | |
| 144 | Primtel | Russia | ##########@sms.primtel.ru | |
| 145 | SCS-900 | Russia | ##########@scs-900.ru | |
| 146 | SMARTS | Russia | 7##########@penza-gsm.ru | |
| 147 | Uraltel | Russia | ##########@sms.uraltel.ru | |
| 148 | Vessotel | Russia | ##########@pager.irkutsk.ru | |
| 149 | YCC | Russia | ##########@sms.ycc.ru | |
| 150 | MTS (064) | Serbia and Montenegro | 064##########@gm.telekom.rs | send text 'Mail' to 770. Do NOT put 064 in front of the number. |
| 151 | MTS (066) | Serbia and Montenegro | 066##########@gm.telekom.rs | send text 'Mail' to 770. Do NOT put 066 in front of the number. |
| 152 | Telenor (063) | Serbia and Montenegro | ##########@063.telenor.rs | send text 'Emma' to 9830. Do NOT put 063 in front of the number. |
| 153 | Telenor (062) | Serbia and Montenegro | ##########@062.telenor.rs | send text 'Emma' to 9830. Do NOT put 062 in front of the number. |
| 154 | Telenor (069) | Serbia and Montenegro | ##########@069.telenor.rs | send text 'Emma' to 9830. Do NOT put 069 in front of the number. |
| 155 | M1 | Singapore | ##########@m1.com.sg | |
| 156 | Starhub | Singapore | ##########@enterprisemessaging-starhub.com | |
| 157 | Mobitel | Slovenia | 0########@linux.mobitel.si | |
| 158 | Si Mobil | Slovenia | ########@simobil.net | |
| 159 | MTN | South Africa | ##########@sms.co.za | |
| 160 | Vodacom | South Africa | ##########@voda.co.za | |
| 161 | Helio | South Korea | ##########@myhelio.com | |
| 162 | Esendex | Spain | #########@esendex.net | |
| 163 | Telefonica(Movistar) | Spain | #########@correo.movistar.net | |
| 164 | Vodafone | Spain | 0#########@vodafone.es | dial 178 for info |
| 165 | Dialog | Sri Lanka | ##########@sms.dialog.lk | |
| 166 | Mobitel | Sri Lanka | ##########@sms.mobitel.lk | |
| 167 | Comviq GSM | Sweden | 46#########@sms.comviq.se | |
| 168 | Europolitan | Sweden | 46#########@europolitan.se | |
| 169 | Tele2 | Sweden | 0#########@sms.tele2.se | send text 'ON' to 1612. |
| 170 | Sunrise Communications | Switzerland | #########@gsm.sunrise.ch | |
| 171 | Sunrise Mobile | Switzerland | #########@mysunrise.ch | |
| 172 | Swisscom | Switzerland | #########@bluewin.ch | |
| 173 | Mobitel | Tanzania | ##########@sms.co.tz | |
| 174 | O2 | United Kingdom | 44##########@mmail.co.uk | send text 'ON' to 212 |
| 175 | Orange | United Kingdom | 44##########@orange.net | activate via website |
| 176 | T-Mobile | United Kingdom | 44##########@t-mobile.uk.net | dial 191 for info, activate via website |
| 177 | Virgin Mobile | United Kingdom | 44##########@vmoble.com | |
| 178 | Vodafone | United Kingdom | 44##########@vodafone.net | dial 242 for info. activate via website |
| 179 | Beeline | Ukraine | #########@sms.beeline.ua | |
| 180 | Golden Telecom | Ukraine | #########@sms.goldentele.com | |
| 181 | Kyivstar (Contract Customers) | Ukraine | 380#########@sms.kyivstar.net | send any text to 7021 |
| 182 | Kyivstar (Prepaid Customers) | Ukraine | 380#########@2sms.kyivstar.net | send any text to 7021 |
| 183 | Life:) | Ukraine | 380#########@life.com.ua | |
| 184 | UMC | Ukraine | #########@sms.umc.com.ua | |
| 185 | Metro PCS | United States | ##########@mymetropcs.com | |
| 186 | T-Mobile | United States | ##########@tmomail.net | |
| 187 | Verizon Wireless | United States | ##########@vtext.com | |
| 188 | AT&T | United States | ##########@txt.att.net | |
| 189 | Sprint PCS | United States | ##########@messaging.sprintpcs.com | |
| 190 | Nextel | United States | ##########@messaging.nextel.com | |
| 191 | Cricket | United States | ##########@sms.mycricket.com | |
| 192 | US Cellular | United States | ##########@email.uscc.net | |
| 193 | Cingular (GSM) | United States | ##########@cingularme.com | |
| 194 | Cingular (TDMA) | United States | ##########@mmode.com | |
| 195 | 3 River Wireless | United States | ##########@sms.3rivers.net | |
| 196 | Advantage Communications | United States | ##########@advantagepaging.com | |
| 197 | AirVoice | United States | ##########@mmode.com | |
| 198 | AllTel | United States | ##########@message.alltel.com | |
| 199 | Bell South | United States | ##########@sms.bellsouth.com | |
| 200 | Bell South (Blackberry) | United States | ##########@bellsouthtips.com | |
| 201 | Bell South Mobility | United States | ##########@blsdcs.net | |
| 202 | Bluegrass Cellular | United States | ##########@sms.bluecell.com | |
| 203 | Boost Mobile | United States | ##########@myboostmobile.com | |
| 204 | CallPlus | United States | ##########@mmode.com | |
| 205 | Carolina Mobile Communications | United States | ##########@cmcpaging.com | |
| 206 | Cellular One | United States | ##########@mobile.celloneusa.com | |
| 207 | Cellular One East Coast | United States | ##########@phone.cellone.net | |
| 208 | Cellular One PCS | United States | ##########@paging.cellone-sf.com | |
| 209 | Cellular One South West | United States | ##########@swmsg.com | |
| 210 | Cellular One West | United States | ##########@mycellone.com | |
| 211 | Cellular South | United States | ##########@csouth1.com | |
| 212 | Central Vermont Communications | United States | ##########@cvcpaging.com | |
| 213 | CenturyTel | United States | ##########@messaging.centurytel.net | |
| 214 | Cingular Wireless | United States | ##########@mobile.mycingular.net | |
| 215 | Cook Paging | United States | ##########@cookmail.com | |
| 216 | Corr Wireless Communications | United States | ##########@corrwireless.net | |
| 217 | Dobson Communications Corporation | United States | ##########@mobile.dobson.net | |
| 218 | Dobson-Alex Wireless / Dobson-Cellular One | United States | ##########@mobile.cellularone.com | |
| 219 | Edge Wireless | United States | ##########@sms.edgewireless.com | |
| 220 | Galaxy Corporation | United States | ##########@sendabeep.net | |
| 221 | GrayLink / Porta-Phone | United States | ##########@epage.porta-phone.com | |
| 222 | GTE | United States | ##########@gte.pagegate.net | |
| 223 | Houston Cellular | United States | ##########@text.houstoncellular.net | |
| 224 | Inland Cellular Telephone | United States | ##########@inlandlink.com | |
| 225 | JSM Tele-Page | United States | ##########@jsmtel.com | |
| 226 | Lauttamus Communication | United States | ##########@e-page.net | |
| 227 | MCI | United States | ##########@pagemci.com | |
| 228 | MCI Phone | United States | ##########@mci.com | |
| 229 | Metrocall | United States | ##########@page.metrocall.com | |
| 230 | Metrocall 2-way | United States | ##########@my2way.com | |
| 231 | Midwest Wireless | United States | ##########@clearlydigital.com | |
| 232 | Mobilecom PA | United States | ##########@page.mobilcom.net | |
| 233 | Mobilfone | United States | ##########@page.mobilfone.com | |
| 234 | Morris Wireless | United States | ##########@beepone.net | |
| 235 | Nextel | United States | ##########@page.nextel.com | |
| 236 | NPI Wireless | United States | ##########@npiwireless.com | |
| 237 | Ntelos | United States | ##########@pcs.ntelos.com | |
| 238 | Omnipoint | United States | ##########@omnipoint.com | |
| 239 | OnlineBeep | United States | ##########@onlinebeep.net | |
| 240 | Pacific Bell | United States | ##########@pacbellpcs.net | |
| 241 | PageMart | United States | ##########@pagemart.net | |
| 242 | PageOne NorthWest | United States | ##########@page1nw.com | |
| 243 | PCS One | United States | ##########@pcsone.net | |
| 244 | Pioneer / Enid Cellular | United States | ##########@msg.pioneerenidcellular.com | |
| 245 | Price Communications | United States | ##########@mobilecell1se.com | |
| 246 | ProPage | United States | ##########@page.propage.net | |
| 247 | Public Service Cellular | United States | ##########@sms.pscel.com | |
| 248 | Qwest | United States | ##########@qwestmp.com | |
| 249 | RAM Page | United States | ##########@ram-page.com | |
| 250 | Safaricom | United States | ##########@safaricomsms.com | |
| 251 | Satelindo GSM | United States | ##########@satelindogsm.com | |
| 252 | Simple Freedom | United States | ##########@text.simplefreedom.net | |
| 253 | Smart Telecom | United States | ##########@mysmart.mymobile.ph | |
| 254 | Southern LINC | United States | ##########@page.southernlinc.com | |
| 255 | Southwestern Bell | United States | ##########@email.swbw.com | |
| 256 | Sprint Paging | United States | ##########@sprintpaging.com | |
| 257 | SunCom | United States | ##########@tms.suncom.com | |
| 258 | Surewest Communications | United States | ##########@mobile.surewest.com | |
| 259 | Teletouch | United States | ##########@pageme.teletouch.com | |
| 260 | Telus | United States | ##########@msg.telus.com | |
| 261 | TIM | United States | ##########@timnet.com | |
| 262 | Triton | United States | ##########@tms.suncom.com | |
| 263 | TSR Wireless | United States | ##########@beep.com | |
| 264 | Unicel | United States | ##########@utext.com | |
| 265 | USA Mobility | United States | ##########@mobilecomm.net | |
| 266 | Verizon PCS | United States | ##########@myvzw.com | |
| 267 | Virgin Mobile | United States | ##########@vmobl.com | |
| 268 | West Central Wireless | United States | ##########@sms.wcc.net | |
| 269 | Western Wireless | United States | ##########@cellularonewest.com | |
| 270 | Wyndtell | United States | ##########@wyndtell.com | |
| 271 | Globalstar | Global (Satellite) | ##########@msg.globalstarusa.com | |
| 272 | Iridium | Global (Satellite) | ##########@msg.iridium.com | |
| 273 | SMS Gateway for Google Project Fi network | Global (Internet) | +1##########@msg.fi.google.com | |
| 274 | Spectrum Mobile | United States | ##########@vtext.com | |
+-----+--------------------------------------------+------------------------+--------------------------------------------------+------------------------------------------------------------------+