transmitting data with GPRS shield

Hi,
I am currently using the GPRS shield (v2) with arduino uno in a remote telemetry application that sends data as a text to a user which works great and am very happy with its ease of use and performance. However, i would like to be able to send small text files (a few kilo bytes), to cloud storage or maybe to an email address or web address. Is this possible and if so are there some example AT commands that would work.

Any help is much appreciated.

Cheers.

yep, I think it’s ok. I remember some guy had try posting data to cosm.

hey man, problem here. using arduino uno r3 and saeed gprs shield 2.0 , getting error
“Sending AT query…

Invalid or no response from the device. Please check the modem port and the baud rate.Disconnecting port COM21.

the port number is correct. baud rate is correct.
tried many codes including the one given above. this just isnt working and i am getting frustrated :@

i burned the following code
//Serial Relay – Arduino will patch a
//serial link between the computer and the GPRS Shield
//at 19200 bps 8-N-1
//Computer is connected to Hardware UART
//GPRS Shield is connected to the Software UART

#include <SoftwareSerial.h>

SoftwareSerial mySerial(7,8);

void setup()
{
Serial.begin(19200);
//Serial.println(“Begin”);
mySerial.begin(19200);

}

void loop()
{
if (mySerial.available())
Serial.write(mySerial.read());
if (Serial.available())
mySerial.write(Serial.read());

}
and tested it via
module-tester by m2msupport

it just says no or invalid response from device.