1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-13 23:48:46 +01:00
Arduino/hardware/arduino/avr/libraries/Bridge/examples/Temboo/SendAnEmail/SendAnEmail.ino

148 lines
4.9 KiB
Arduino
Raw Normal View History

2013-06-26 17:29:57 +02:00
/*
SendAnEmail
2013-06-28 11:08:56 +02:00
Demonstrates sending an email via a Google Gmail account using the Temboo Arduino Yun SDK.
Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino
2013-06-26 17:29:57 +02:00
A Temboo account and application key are necessary to run all Temboo examples.
If you don't already have one, you can register for a free Temboo account at
http://www.temboo.com
Since this sketch uses Gmail to send the email, you'll also need a valid
Google Gmail account. The sketch needs the username and password you use
to log into your Gmail account: substitute the placeholders below for these values.
This example assumes basic familiarity with Arduino sketches, and that your Yun is connected
2013-06-28 11:08:56 +02:00
to the Internet.
2013-06-26 17:29:57 +02:00
2013-06-28 11:08:56 +02:00
Looking for another API? We've got over 100 in our Library!
2013-06-26 17:29:57 +02:00
This example code is in the public domain.
*/
#include <Bridge.h>
#include <Console.h>
#include <FileIO.h>
#include <HttpClient.h>
#include <Process.h>
2013-06-28 11:08:56 +02:00
#include "TembooAccount.h" // contains Temboo account information
// as described in the footer comment below
/*** SUBSTITUTE YOUR VALUES BELOW: ***/
// your Gmail address, eg "bob.smith@gmail.com"
const String GMAIL_USER_NAME = "xxxxxxxxxx";
// your Gmail password
const String GMAIL_PASSWORD = "xxxxxxxxxx";
// the email address you want to send the email to, eg "jane.doe@temboo.com"
const String TO_EMAIL_ADDRESS = "xxxxxxxxxx";
2013-06-26 17:29:57 +02:00
boolean success = false; // a flag to indicate whether we've sent the email yet or not
void setup() {
Serial.begin(9600);
// for debugging, wait until a serial console is connected
delay(4000);
while(!Serial);
Bridge.begin();
}
void loop()
{
// only try to send the email if we haven't already sent it successfully
if (!success) {
2013-06-28 11:08:56 +02:00
Serial.println("Running SendAnEmail...");
2013-06-26 17:29:57 +02:00
// we need a Process object to send a Choreo request to Temboo
Process SendEmailChoreo;
// invoke the Temboo client
SendEmailChoreo.begin("temboo");
// set Temboo account credentials
SendEmailChoreo.addParameter("-a");
SendEmailChoreo.addParameter(TEMBOO_ACCOUNT);
SendEmailChoreo.addParameter("-u");
SendEmailChoreo.addParameter(TEMBOO_APP_KEY_NAME);
SendEmailChoreo.addParameter("-p");
SendEmailChoreo.addParameter(TEMBOO_APP_KEY);
// identify the Temboo Library choreo to run (Google > Gmail > SendEmail)
SendEmailChoreo.addParameter("-c");
SendEmailChoreo.addParameter("/Library/Google/Gmail/SendEmail");
// set the required choreo inputs
// see https://www.temboo.com/library/Library/Google/Gmail/SendEmail/
// for complete details about the inputs for this Choreo
// the first input is a your Gmail user name.
SendEmailChoreo.addParameter("-i");
2013-06-28 11:08:56 +02:00
SendEmailChoreo.addParameter("Username:" + GMAIL_USER_NAME);
2013-06-26 17:29:57 +02:00
// next is your Gmail password.
SendEmailChoreo.addParameter("-i");
2013-06-28 11:08:56 +02:00
SendEmailChoreo.addParameter("Password:" + GMAIL_PASSWORD);
// who to send the email to
SendEmailChoreo.addParameter("-i");
SendEmailChoreo.addParameter("ToAddress:" + TO_EMAIL_ADDRESS);
2013-06-26 17:29:57 +02:00
// then a subject line
SendEmailChoreo.addParameter("-i");
SendEmailChoreo.addParameter("Subject:ALERT: Greenhouse Temperature");
// next comes the message body, the main content of the email
SendEmailChoreo.addParameter("-i");
SendEmailChoreo.addParameter("MessageBody:Hey! The greenhouse is too cold!");
// tell the Process to run and wait for the results. The
// return code (rc) will tell us whether the Temboo client
// was able to send our request to the Temboo servers
unsigned int rc = SendEmailChoreo.run();
// a return code of zero (0) means everything worked
if (rc == 0) {
Serial.println("Success! Email sent!");
success = true;
} else {
// a non-zero return code means there was an error
// read and print the error message
while (SendEmailChoreo.available()) {
Serial.print((char)SendEmailChoreo.read());
}
}
SendEmailChoreo.close();
// do nothing for the next 60 seconds
delay(60000);
}
}
/*
IMPORTANT NOTE: TembooAccount.h:
TembooAccount.h is a file referenced by this sketch that contains your Temboo account information.
You need to create this file. To do so, make a new tab in Arduino, call it TembooAccount.h, and
include the following variables and constants:
#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name
#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name
#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key
The same TembooAccount.h file settings can be used for all Temboo SDK sketches.
2013-06-28 11:08:56 +02:00
You can find your Temboo App Key information on the Temboo website,
under My Account > Application Keys
2013-06-26 17:29:57 +02:00
Keeping your account information in a separate file means you can save it once,
then just distribute the main .ino file without worrying that you forgot to delete your credentials.
*/