camera
camera copied to clipboard
Missing brackets
Hello, I believe you are missing a pair of brackets here:
modules: [ module: 'camera', position: 'top_center', config: selfieInterval: 3, // Time interval in seconds before the photo will be taken. emailConfig: { service: 'Hotmail', // Email provider to use to send email with a photo. auth: { user: '[email protected]', // Your email account pass: '
' // Your password for email account } } ]
should be:
modules: [ { module: 'camera', position: 'top_center', config: selfieInterval: 3, // Time interval in seconds before the photo will be taken. emailConfig: { service: 'Hotmail', // Email provider to use to send email with a photo. auth: { user: '[email protected]', // Your email account pass: '
' // Your password for email account } } } ]
Use this works for me.
{
module: 'camera',
position: 'top_center',
config: {
selfieInterval: 3,
emailConfig: {
service: 'Gmail',
auth: {
user: '<>',
pass: '<>'
},
},
}
},