Skip to content

Commit 0569282

Browse files
committed
Add SMS gateways for EE, O2, and Vodafone, URLs and webhooks can be added with enter key, remove Overclockers from Things to do (uses Cloudflare)
1 parent b88cd38 commit 0569282

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ First, read pricing information [here](https://aws.amazon.com/sns/faqs/#SMS_pric
163163

164164
- **Email**\
165165
**FREE** but limited. Uses email to send text via phone carrier's [SMS gateway](https://en.wikipedia.org/wiki/SMS_gateway#Email_clients). Mostly the same setup as [Email](#Email).\
166-
Currently supported carriers: Alltel, AT&T, Boost Mobil, Cricket Wireless, FirstNet, Google Project Fi, MetroPCS, Republic Wireless, Sprint, Straight Talk, T-Mobile, Ting, U.S. Cellular, Verizon Wireless, Virgin Mobile.\
166+
Currently supported carriers: Alltel, AT&T, Boost Mobil, Cricket Wireless, EE, FirstNet, Google Project Fi, MetroPCS, O2, Republic Wireless, Sprint, Straight Talk, T-Mobile, Ting, U.S. Cellular, Verizon Wireless, Virgin Mobile, Vodafone.\
167167
If you'd like to request a carrier, please refer to [Feedback and Support](#Feedback-and-Support) and provide your carrier's SMS gateway if possible.
168168

169169
- **[Twilio](https://www.twilio.com/sms)**\
@@ -200,7 +200,6 @@ To provide monetary support, [donate](https://www.paypal.com/donate?business=3Y9
200200
## Things to work on
201201
* Add more stores
202202
* Newegg search pages
203-
* Overclockers
204203
* ~~B&H Photo Video~~
205204
* ~~Ebuyer~~
206205
* ~~Walmart~~

server/index.html

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@
212212
v-model="url"
213213
:append-outer-icon="'mdi-plus'"
214214
@click:append-outer="add"
215+
@keydown.enter="add"
215216
></v-text-field>
216217
<v-tooltip bottom>
217218
<template v-slot:activator="{ on, attrs }">
@@ -881,6 +882,7 @@
881882
v-model="webhook_url"
882883
:append-outer-icon="'mdi-plus'"
883884
@click:append-outer="add"
885+
@keydown.enter="add"
884886
></v-text-field>
885887
<v-tooltip bottom>
886888
<template v-slot:activator="{ on, attrs }">
@@ -1138,21 +1140,24 @@
11381140
"qiye.aliyun",
11391141
],
11401142
carriers: {
1141-
Alltel: "sms.alltelwireless.com",
1143+
"Alltel": "sms.alltelwireless.com",
11421144
"AT&T": "txt.att.net",
11431145
"Boost Mobile": "sms.myboostmobile.com",
11441146
"Cricket Wireless": "mms.cricketwireless.net",
1145-
FirstNet: "txt.att.net",
1147+
"EE": "mms.ee.co.uk",
1148+
"FirstNet": "txt.att.net",
11461149
"Google Project Fi": "msg.fi.google.com",
1147-
MetroPCS: "mymetropcs.com",
1150+
"MetroPCS": "mymetropcs.com",
1151+
"O2": "mmail.co.uk",
11481152
"Republic Wireless": "text.republicwireless.com",
1149-
Sprint: "messaging.sprintpcs.com",
1153+
"Sprint": "messaging.sprintpcs.com",
11501154
"Straight Talk": "vtext.com",
11511155
"T-Mobile": "tmomail.net",
1152-
Ting: "message.ting.com",
1156+
"Ting": "message.ting.com",
11531157
"U.S. Cellular": "email.uscc.net",
11541158
"Verizon Wireless": "vtext.com",
11551159
"Virgin Mobile": "vmobl.com",
1160+
"Vodafone": "vodafone.net",
11561161
},
11571162
};
11581163
},

0 commit comments

Comments
 (0)