No video

How to Send SMS Text Messages from Microsoft Access

  Рет қаралды 7,080

Sean MacKenzie Data Engineering

Sean MacKenzie Data Engineering

Күн бұрын

Пікірлер: 27
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
- SMS is generally not free. So you need to buy into a provider and get a phone number - I used Twilio www.twilio.com - Make an account on Twilio, log in, go through three steps including getting a phone number - Go to Messaging > Try it out > Send an SMS > Try sending to yourself > note accounts, passwords, and data fields - Upgrade your account if necessary. Minimum is low, only $20 - Use the data fields etc. that you collected in order to use MS Access like you see here - My Skype number can accept text messages. I also tested this on my phone with great results. - Long Codes (10 digit numbers) can send a few hundred messages per day before being capped - Short Codes (5 or 6 digit numbers) can do bulk SMS messaging with fewer restrictions What kind of project are you guys using SMS messaging for?
@FunTv456
@FunTv456 9 ай бұрын
will it works in Bangladesh? bro
@kyopan23
@kyopan23 2 ай бұрын
Amazing video. I will try to implement this in my project. I have a table of numbers, i want to send a single sms to all the numbers in my table that meet certain criterias "active". Hopefully I get no error
@seanmackenziedataengineering
@seanmackenziedataengineering 2 ай бұрын
Cool project!
@miles6875
@miles6875 Жыл бұрын
Could definitely see the practical use case for this, thank you
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
You bet!
@jj1976jj1976
@jj1976jj1976 Жыл бұрын
Thank you, Sean. It works great! I have many non-profit clients that can use this code.
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
Hey that's great! Glad to help. Sooo handy for alerts, and it does not get lost in the email zoo.
@Khabat.Hawrami
@Khabat.Hawrami Жыл бұрын
Great Idea in a video. Thank you.
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
Glad you enjoyed it!
@omegacodedeveloper3592
@omegacodedeveloper3592 Жыл бұрын
Good video sir, Is it possible to send bulk messages that are customizable to each receiver like Mail Merge?
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
You could easily just make a table with a few hundred custom messages and loop through the table, sending an SMS on each pass. This apparently will work for "long code" ie 10 digit numbers. Apparently only "short code" numbers are pre-approved for mass texting (those short 5 or 6 numbers you receive messages from sometimes). To loop through a recordset: kzbin.info/www/bejne/bXnGnIygfcSqnZY Personally, I would pause on each send, maybe for a few seconds: kzbin.info/www/bejne/qKPGoHRmZ6-Wra8 Also, as the loop progresses, pass control back to Windows so your system doesn't show "Not responding": kzbin.info/www/bejne/eIG3XpJ-Zs6lbM0
@garycurtis
@garycurtis Жыл бұрын
This is amazing, just what I needed. Question, can Access receive messages? Also when I send text messages using special Spanish characters, it uses double segments, do you know how I can get around that?
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
I'm glad it worked! It looks like Twilio can receive messages for your Twilio phone number, and you can configure it to do a http POST to a service you can write, each time a message comes in. Great topic for another video. I didn't try with special characters, but if you use any special characters beyond GSM-7, your limit is 70 for each segment, not 160 as it is with GSM-7 (basic) characters.
@garycurtis
@garycurtis Жыл бұрын
@@seanmackenziedataengineering okay awesome, I appreciate it.
@kyopan23
@kyopan23 19 күн бұрын
@@seanmackenziedataengineering are you considering making a video about this? Incoming Twilio text messages to access? Great content!
@norbertfoigelman8640
@norbertfoigelman8640 10 ай бұрын
Hi Sean, I ama getting the following error "Failed with error# 410 Gone" any idea? thanks Norbert
@seanmackenziedataengineering
@seanmackenziedataengineering 10 ай бұрын
It indicates that the http target was there but is no longer. It could be a syntax error or something, or your Twilio account expired or something. Bit of a mystery!
@oxpertecautomations2858
@oxpertecautomations2858 9 ай бұрын
Hello, I need this solution for school but the messages should be triggered by biometric devices
@seanmackenziedataengineering
@seanmackenziedataengineering 9 ай бұрын
Those devices must leave records somewhere. Find out where. Then, you can either create a trigger (active solution) or a polling procedure (passive) in MS Access that checks for records. Then, send messages at will!
@oxpertecautomations2858
@oxpertecautomations2858 9 ай бұрын
@@seanmackenziedataengineering it's a complete attendance with MS Access dB, kindly share your email address so that you can create for me a simple solution for this at a cost
@tarikfuadfuad-jt8nt
@tarikfuadfuad-jt8nt 9 ай бұрын
Please explain how to copy the link from the twilio website and do the programming. I tried that but I could not
@seanmackenziedataengineering
@seanmackenziedataengineering 9 ай бұрын
On your default page in Twilio you'll see Account SID. Copy it and paste it into the link I describe at 4:40 in this video. That is the link you use. Between the slashes like Account/youraccountsid/
@dbspecialistrobins7533
@dbspecialistrobins7533 8 ай бұрын
Do you know if MS Access can send faxes using VBA?
@seanmackenziedataengineering
@seanmackenziedataengineering 8 ай бұрын
Good question.. probably the best method would be to use an email-to-fax service, though you could research DoCmd.SendObject too!
@dbspecialistrobins7533
@dbspecialistrobins7533 8 ай бұрын
Thank you 😊
@seanmackenziedataengineering
@seanmackenziedataengineering Жыл бұрын
In case you guys want to see one of my projects where I use this technique, check it out: kzbin.info/www/bejne/mqmqm4CXbs2dl7s
How to Send WhatsApp Messages from Microsoft Access
18:58
Sean MacKenzie Data Engineering
Рет қаралды 9 М.
How to Kick Users out of Your MS Access Database
19:19
Sean MacKenzie Data Engineering
Рет қаралды 10 М.
123 GO! Houseによる偽の舌ドッキリ 😂👅
00:20
123 GO! HOUSE Japanese
Рет қаралды 6 МЛН
If Barbie came to life! 💝
00:37
Meow-some! Reacts
Рет қаралды 76 МЛН
Please Help Barry Choose His Real Son
00:23
Garri Creative
Рет қаралды 23 МЛН
How To Send Unlimited Bulk SMS Using YOUR NUMBER (2024) (New Method)
4:02
TristanAutomateYourBiz
Рет қаралды 29 М.
Retrieving Real-Time Data Using a Web API in Microsoft Access
33:22
Computer Learning Zone
Рет қаралды 10 М.
How to Send Email from Access Using VBA - Table Queue Example
25:42
Sean MacKenzie Data Engineering
Рет қаралды 11 М.
How to Open Excel from Access Using VBA
14:05
Sean MacKenzie Data Engineering
Рет қаралды 7 М.
How to Filter the Data in a Combo Box or List Box as you Type in Microsoft Access
22:53