Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

How to send SMS to mobile from openerp SMS Gateway

Odoberať

Get notified when there's activity on this post

This question has been flagged
smsclientsmsgateway
4 Replies
15176 Zobrazenia
Avatar
mozib khan


I have install sms_client module in my data base. i am using openerp 7. i configured Gateway List in General tab Username,Password,Receipt No,SMS Mesage all this parameters. i am getting SMS in Message Queue status as Queued so, some one tell me how can i set automated action and schedular to get SMS to mobile.

0
Avatar
Zrušiť
mozib khan
Autor

I have canny service provider credentials.with out creating new module i can't perform this action??. by using sms_client Module? and i have created server and automated action also. message are coming in to openerp sms gateway->message queue. i want that message to come to my mobile. how can i do that? help me in that

Avatar
Anil Kesariya
Best Answer

Hello Mozib Khan,

There are no. of script available in python to send message to mobile.

Here you go! for the sample script.

Click Here 

The thing is you need to get register any message service provider, which might be not free.

Once you will have that service provider credential you can develop your own module and scheduler for this.

Hope this will help you.

Rgds,

Anil.





2
Avatar
Zrušiť
Avatar
Anand
Best Answer

I have developed one module to use way2sms api to send SMS.

But problem is that, in way2sms we can send only 100 SMS per day.

So its good to use 

twilio 

Its a good one but subscriptions charges are must... :)

I think your prob is solved.

1
Avatar
Zrušiť
Avatar
Demirel yakito
Best Answer

import urllib2

import cookielib

from getpass import getpass

import sys

username = raw_input("Enter your login Username: ")

passwd = getpass()

message = raw_input("Enter Message: ")

number = raw_input("Enter Mobile number:")

message = "+".join(message.split(' '))

# Logging into the SMS Site

url = 'http://site24.way2sms.com/Login1.action?'

data = 'username=' + username + '&password=' + passwd + '&Submit=Sign+in'

# For Cookies:

cj = cookielib.CookieJar()

opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))

# Adding Header detail:

opener.addheaders = [('User-Agent', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36')]

try:

usock = opener.open(url, data)

except IOError:

print "Error while logging in."

sys.exit(1)

jession_id = str(cj).split('~')[1].split(' ')[0]

send_sms_url = 'http://site24.way2sms.com/smstoss.action?'

send_sms_data = 'ssaction=ss&Token=' + jession_id + '&mobile=' + number + '&message=' + message + '&msgLen=136'

opener.addheaders = [('Referer', 'http://site25.way2sms.com/sendSMS?Token=' + jession_id)]

try:

sms_sent_page = opener.open(send_sms_url, send_sms_data)

except IOError:

print "Error while sending message"

sys.exit(1)

print "SMS has been sent."

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
how to setting sms gateway until sent sms in OpenERP ? Solved
smsclient smsgateway
Avatar
Avatar
Avatar
Avatar
23
jan 17
19119
status sms was sent but not recived in phone
smsclient sms smsgateway
Avatar
0
aug 16
4973
connect modul sms gateway
smsclient smsgateway odoo8
Avatar
0
aug 16
4405
how to add sms gateways in sms framework in Odoo v9
smsclient sms smsgateway
Avatar
0
jún 16
4576
SMS by using A GSM Gateway
smsgateway
Avatar
0
apr 21
2939
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now