FJ Software Foren-Übersicht  
 Homepage   •  Suchen   •  FAQ   •  Mitgliederliste   •  Registrieren   •  Login
 interval between sending sms Nächstes Thema anzeigen
Vorheriges Thema anzeigen
Neues Thema eröffnenDieses Thema ist gesperrt, du kannst keine Beiträge editieren oder beantworten.
Autor Nachricht
airflame



Anmeldedatum: 14.10.2022
Beiträge: 11

BeitragVerfasst am: Fr Okt 14, 2022 07:36 Antworten mit ZitatNach oben

Is there a way to set a interval for sending sms? Like every 10 seconds?
Benutzer-Profile anzeigenPrivate Nachricht senden
airflame



Anmeldedatum: 14.10.2022
Beiträge: 11

BeitragVerfasst am: Fr Okt 14, 2022 08:45 Antworten mit ZitatNach oben

Ok have it:

1. create script.vbs and place the code inside:

Code:
Dim TelNr()
dateiPfad = "SMS.txt"
x = 0
Const ForReading = 1

Set fs = CreateObject("Scripting.FileSystemObject")

If (fs.FileExists(dateiPfad)) Then
   Set f = fs.OpenTextFile(dateiPfad, ForReading)

   Do While f.AtEndOfStream <> True
      x = x+1
      ReDim Preserve TelNr(x)
      org_zeile = f.Readline
      if x = 1 then
         SMSText = org_zeile
      else
         TelNr(x) = org_zeile
      end if
   Loop
   f.Close
   AnzahlSMS = x
end if

For n = 2 to AnzahlSMS
   RunMPE "action=sendmessage flags=noerrmsg savetosent=1 number=" & TelNr(n) & " text=" & Chr(34) & SMSText & Chr(34)
dim nLow, nHigh
randomize
nLow = 10000
nHigh = 50000
WScript.Sleep Int((nHigh - nLow + 1) * Rnd + nLow)
next

Function RunMPE(Arguments)
  set shell = CreateObject("WScript.Shell")
  shell.run "myphoneexplorer " & Arguments ,3
End Function





2. Create text file sms.txt put there
First line:
Your message of sms.

Second line:
Phone number nr1

Third line:
Phone number nr2

etc.


3. Run command window in windows and go to folder where are those two files located. And type script.vbs
Benutzer-Profile anzeigenPrivate Nachricht senden
airflame



Anmeldedatum: 14.10.2022
Beiträge: 11

BeitragVerfasst am: Fr Okt 14, 2022 08:47 Antworten mit ZitatNach oben

I hope myphoneexplorer will have this option in program some day to set up Smile
Benutzer-Profile anzeigenPrivate Nachricht senden
FJ
Site Admin


Anmeldedatum: 15.02.2006
Beiträge: 31467
Wohnort: Tirol

BeitragVerfasst am: Di Okt 18, 2022 23:42 Antworten mit ZitatNach oben

Its already integrated as tweak.
- Open the file %appdata%\MyPhoneExplorer\general.ini
- add this line directly below [Main]: SendIntervalDelay=10
- save the file

_________________
Ich bitte um Verständnis daß ich aufgrund des hohen Aufkommens im Forum und meines zeitlichen Rahmens nichtmehr jeden Thread im Forum persönlich lesen bzw. beantworten kann.

Bitte benutzt auch die Forum-Suche bzw. die FAQ
Benutzer-Profile anzeigenPrivate Nachricht sendenE-Mail sendenICQ-Nummer
airflame



Anmeldedatum: 14.10.2022
Beiträge: 11

BeitragVerfasst am: Do Okt 20, 2022 12:51 Antworten mit ZitatNach oben

FJ hat Folgendes geschrieben:
Its already integrated as tweak.
- Open the file %appdata%\MyPhoneExplorer\general.ini
- add this line directly below [Main]: SendIntervalDelay=10
- save the file


Good morning, thank you for this valuable tip it will definitely come in handy. Is it possible to set a random time in this file? E.g. from 10 seconds to 40 seconds?

Edit:
I see there is "Schedule text message delivery" in MyPhoneExplorer its possible to send Scheduled sms using vbs file? Or use interval between sms in Schedule text message delivery.

Now if You send message usning [Schedule text message delivery] in MyPhoneExplorer You can set the date and time of dispatch. The problem is when you have 100 phone numbers. They will be sent one after another without interruption which means about 1 second per sms. It would be nice if you could set some interval between sms when using [Schedule text message delivery] option.

Image
Benutzer-Profile anzeigenPrivate Nachricht senden
FJ
Site Admin


Anmeldedatum: 15.02.2006
Beiträge: 31467
Wohnort: Tirol

BeitragVerfasst am: Fr Okt 21, 2022 15:19 Antworten mit ZitatNach oben

Random dealy is also possible:
Zitat:
SendIntervalDelay=10
SendIntervalDelayRandom=30

This will pause the sending between 10 and 40 seconds

_________________
Ich bitte um Verständnis daß ich aufgrund des hohen Aufkommens im Forum und meines zeitlichen Rahmens nichtmehr jeden Thread im Forum persönlich lesen bzw. beantworten kann.

Bitte benutzt auch die Forum-Suche bzw. die FAQ
Benutzer-Profile anzeigenPrivate Nachricht sendenE-Mail sendenICQ-Nummer
airflame



Anmeldedatum: 14.10.2022
Beiträge: 11

BeitragVerfasst am: Mo Okt 24, 2022 09:52 Antworten mit ZitatNach oben

FJ hat Folgendes geschrieben:
Random dealy is also possible:
SendIntervalDelay=10
SendIntervalDelayRandom=30
This will pause the sending between 10 and 40 seconds


Is there any way to do DelayRandom or IntervalDelay when sending thro Schedule SMS option? I want to send sms thro phone without using a pc. The options You posted will only work sensing sms thro MyPhoneExplorer.
Benutzer-Profile anzeigenPrivate Nachricht senden
FJ
Site Admin


Anmeldedatum: 15.02.2006
Beiträge: 31467
Wohnort: Tirol

BeitragVerfasst am: Di Okt 25, 2022 22:39 Antworten mit ZitatNach oben

No, this is not possible

_________________
Ich bitte um Verständnis daß ich aufgrund des hohen Aufkommens im Forum und meines zeitlichen Rahmens nichtmehr jeden Thread im Forum persönlich lesen bzw. beantworten kann.

Bitte benutzt auch die Forum-Suche bzw. die FAQ
Benutzer-Profile anzeigenPrivate Nachricht sendenE-Mail sendenICQ-Nummer
airflame



Anmeldedatum: 14.10.2022
Beiträge: 11

BeitragVerfasst am: Mi Okt 26, 2022 08:26 Antworten mit ZitatNach oben

Would it be possible to make an option in MyPhoneExplorer so that when sending to [Schedule text message delivery] you could enter an hourly interval and the program would calculate and set the sms sending itself based on that?

For example, we have to send 500 text messages to customers I want to send, for example, 100 text messages for half an hour. So I enter 2 hours 30 minutes in the program add text to send and the program calculates time between sending sms. And then send it to phone with proper timing of each sms.
Benutzer-Profile anzeigenPrivate Nachricht senden
FJ
Site Admin


Anmeldedatum: 15.02.2006
Beiträge: 31467
Wohnort: Tirol

BeitragVerfasst am: Mi Okt 26, 2022 10:23 Antworten mit ZitatNach oben

Sorry, too much work for a single use case.
You got already alot of possibilities, but you cannot expect that MyPhoneExplorer will fullfill every special wish. If the possibilities are not perfect enought for you then you have to write your own script

_________________
Ich bitte um Verständnis daß ich aufgrund des hohen Aufkommens im Forum und meines zeitlichen Rahmens nichtmehr jeden Thread im Forum persönlich lesen bzw. beantworten kann.

Bitte benutzt auch die Forum-Suche bzw. die FAQ
Benutzer-Profile anzeigenPrivate Nachricht sendenE-Mail sendenICQ-Nummer
Beiträge der letzten Zeit anzeigen:      
Neues Thema eröffnenDieses Thema ist gesperrt, du kannst keine Beiträge editieren oder beantworten.


 Gehe zu:   



Nächstes Thema anzeigen
Vorheriges Thema anzeigen
Du kannst keine Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum nicht antworten.
Du kannst deine Beiträge in diesem Forum nicht bearbeiten.
Du kannst deine Beiträge in diesem Forum nicht löschen.
Du kannst an Umfragen in diesem Forum nicht mitmachen.

Powered by phpBB © 2001, 2002 phpBB Group :: FI Theme :: Alle Zeiten sind GMT + 1 Stunde
Deutsche Übersetzung von phpBB.de