snapshot( number )

Arguments

number : Number of picture to take in quick succession. Maximum 16.

Returns

An array of the URLs of pictures taken.

Example

var cam = <#Dropcam_[92]_1#>; 
var body = "";
cam.snapshot(5).forEach(function(url){
     body += "< img src='"+url+"'>"
});
KumoApp.Email(<%email to%>, "Pictures taken at " + cam.name, body);