Send Email using gmail failed
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
JAY CAMERON
il 3 Giu 2020
Risposto: Jyotsna Talluri
il 9 Giu 2020
I used the example code from your site and I am sure it worked except the gmail rejected the use of my account with this message:
_____________________________________________
Someone just used your password to try to sign in to your account from a non-Google app. Google blocked them, but you should check what happened. Review your account activity to make sure no one else has access.
_______________________________________
___________________________
On the Matlab side the error was:
Authentication failed.
___________________________________________
the program I used from an example is pasted below:
source = 'matlabemailwarning@gmail.com'; %from address (gmail)
destination = 'cameron_jay1941@yahoo.com'; %to address (any mail service)
myEmailPassword = 'zaqWSX12'; %the password to the 'from' account
subj = 'This is the subject line of the email'; % subject line
msg = 'This is the main body of the email.'; % main body of email.
%set up SMTP service for Gmail
setpref('Internet','E_mail',source);
setpref('Internet','SMTP_Server','smtp.gmail.com');
setpref('Internet','SMTP_Username',source);
setpref('Internet','SMTP_Password',myEmailPassword);
% Gmail server.
props = java.lang.System.getProperties;
props.setProperty('mail.smtp.auth','true');
props.setProperty('mail.smtp.socketFactory.class', 'javax.net.ssl.SSLSocketFactory');
props.setProperty('mail.smtp.socketFactory.port','465');
% Send the email
sendmail(destination,subj,msg); %<<<<<<<<<<<<<<<<< error here
0 Commenti
Risposta accettata
Jyotsna Talluri
il 9 Giu 2020
You also have to set the preferences through GMAIL to allow interaction with MATLAB. You can do it with the following link:
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Web Services in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!