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: 'name@email.com', // 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: 'name@email.com', // Your email account
pass: '' // Your password for email account
}
}
}
]
Hello, I believe you are missing a pair of brackets here:
should be: