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
I have tried two different email addresses, but cannot get it to send the email. Not sure which logs to provide? Nothing came up in the console of the chromium browser
The text was updated successfully, but these errors were encountered:
I just played around with this and got a spare Gmail account to work. The steps roughly go like so:
Go to Gmail and click on your account icon in the upper right corner.
Select Manage Account.
Left side, select Security
Center, where it says "Log in to GMail" select App Passwords
Generate an app password of type "other". Call it "magic mirror" or whatever. It will generate a random password for you. This is the password you plug into the config.js file on your mirror. That part of your module configuration should look like this:
sendMail: {
transport: {
host: 'smtp.gmail.com',
port: 465,
secure: true,
auth: {
user: "[yourGmailAccountName]@gmail.com",
pass: "[generatedPasswordGoesHere]"
}
},
message: {
from: "[yourGmailAccount]@gmail.com",
to: "[email protected]",
subject: "Mirror has given Dobbie a selfie!",
text: "New selfie has arrived."
}
}
I have tried two different email addresses, but cannot get it to send the email. Not sure which logs to provide? Nothing came up in the console of the chromium browser
The text was updated successfully, but these errors were encountered: