Button Clicking feature using LWP:Useragent module in perl - perl

I have a requirement where I got to send sms to the mobiles when the systems are down. I have LWP:Useragent module through which I would like to to send values to the fields and click submit button. Using post method I can post values to the fields in the of the webpage where we can send free sms. But how do we click the submit button and go to the next page and type message to send once you have login to the account(The process is login to your account and then send sms using websites like way2sms.com). Any help is appreciated. Thanks.
Regards,
Preethy

I will suggest you:
1) Check API of SMS service, it's more easy to through it.
2) If you know details of POST/GET request
- send POST/GET request to log in on site
- save cookie
- send POST/GET request with SMS notification
3) If you want to make process of fill and then clicking submit button (see it module: WWW::Mechanize )

Related

How can I send a form by email with titanium

I have seen the email dialog example and also the email dialog example, but I am not looking for an email client interface.
I also took a look at the pizza ordering app, and I couldn't find any method for the send button.
I have custom text fields and in the end I want to send the whole form to an email recipient. I can't find the way to do that.
That is, I would appreciate your help.
For sending E-mail from your app , you have these options :-
1- Using Titanium.UI.EmailDialog .
The Email Dialog is created with the Titanium.UI.createEmailDialog method. The user needs to register an e-mail account on the device in order to open the dialog. The dialog will not open when there is not a registered e-mail account.
Ex : Android
Read more http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.EmailDialog
But As you said you don`t want like this ! and if you want to send direct messages from your app please see these other options :-
2- Make any backend service like #PHP to send email
for ex:- http://www.w3schools.com/php/func_mail_mail.asp, and using Titanium.Network.HTTPClient to connect with your backend service .
3- Using ArrowDB
Enjoy !
Follow these steps,
1) Create webservice method to send email.
2) Call particular email method in the button click.
Note :
Apple will not approve if you don't provide valid reason to send email via webservice. They might think you are trying to spam users.
Create a web service (e.g. a PHP script) that receives POST data and send an email based on it.
In your app, clicking the button simply collects all the data and POST it to your web service.
You can not check this on emulator/simulator only can check on device. And in device you need to configure any email account like gmail or outlook mail.
var emailDialog = Ti.UI.createEmailDialog();
emailDialog.subject = "Hello from Titanium";
emailDialog.toRecipients = ['foo#yahoo.com'];
emailDialog.messageBody = '<b>Appcelerator Titanium Rocks!</b>';
var f = Ti.Filesystem.getFile('cricket.wav');
emailDialog.addAttachment(f);
emailDialog.open();

Send Invitation using event like iCal (Calendar)

In my app, I have to develop functionality for calendar invitation using even.
So just I want to know that Is there any way to send invitation and send email to it for invitation like iCal(Calendar)?
Please give me suggestions or any idea for above functionality.
Thanks in advance.
Although you can opt for a server side solution, but if your app does not use a server side the you can add local notification to remind the user he needs to send an invitation. and code it to open mail composer directly.

Send text message without show message composer or in bckground in iphone

Hi is it possible to send text message in background..?My new requirement is to send SMS if there is no internet connection .
I am trying MFMessageViewComposer but it shows the pop up view.
How can we send message without shown this pop up? Is there any other way to do this things.
It's not allowed. For example, what if I develop an app which send taxed SMS to a server of mine to get money ? That´s the main reason... I could also send innaproriate or SPAM SMS to random numbers...
That's why the user has to validate the sending.
Send SMS programmatically, without the SMS composer window hope that helps... Looks to be a similar question. According to the poster, ios6 does not allow you to send SMS in the background, without using a 3rd party API, like Nexmo, who provide a REST API to send messages using HTTP.
To send a message using Nexmo, just send a request like http://rest.nexmo.com/sms/json?api_key=n3xm0rocks&api_secret=12ab34cd&from=MyCompany20&to=447525856424&text=hello+hd1 and you'll get back JSON, change the endpoint to xml if you prefer that.

Automatic email from iphone application

I have seen some similar questions here on stack-overflow, but in my application i want when user click on confirm button automatic email go to the email id specified in the form with other details.
How can i implement this.
You could just make a post request to a server and have the server then send the email.
You cannot send emails automatically without sending the user to the mail application. You could however, take advantage of a third party service like Amazon Simple Email Service http://aws.amazon.com/ses/ to send the message.

Send email with content without using webservice in iPhone app

In my app I need to send the email to the mail id provided by the user with predefined content.
This has to be done internally without the interaction of the user i.e, as soon as user enters email id in the provided textfield and clicks send button, the mail with content has to sent to that mail-id.
Can this be done without using any webservice. Please help me out in this.
Thanks in advance,
Hanu
I have achieved this with SMKSMTPMessage - a library that allows you to send an email with attachments if required from code, without any user interaction required