You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
}
}
}
]
The text was updated successfully, but these errors were encountered:
Hello, I believe you are missing a pair of brackets here:
should be:
The text was updated successfully, but these errors were encountered: