cannot send an email through matlab
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Mario Trevino
 el 3 de Mayo de 2019
  
    
    
    
    
    Comentada: Adam Danz
    
      
 el 3 de Mayo de 2019
            Im not being able to send an email thgourh matlab.... My google account allow external applications to use it....
here is the code.... any suggestions?
------------------------------
username='myemail';
password='mypassword';
setpref('Internet', 'SMTP_Server',   'smtp.gmail.com');
setpref('Internet','E_mail',username);
setpref('Internet', 'SMTP_Username', username);
setpref('Internet', 'SMTP_Password', password);
props = java.lang.System.getProperties;
props.setProperty('mail.smtp.auth',                'true');  % Note: 'true' as a string, not a logical value!
props.setProperty('mail.smtp.starttls.enable',     'true');  % Note: 'true' as a string, not a logical value!
props.setProperty('mail.smtp.socketFactory.port',  '465');   % Note: '465'  as a string, not a numeric value!
props.setProperty('mail.smtp.socketFactory.class', 'javax.net.ssl.SSLSocketFactory');
 sendmail('another@email', 'Hello world')
------------------------------
0 comentarios
Respuesta aceptada
  Adam Danz
    
      
 el 3 de Mayo de 2019
        
      Editada: Adam Danz
    
      
 el 3 de Mayo de 2019
  
       Mario, follow this demo on how to send an email from a gmail account using matlab.  You're close - you just have to make some small adjustment.  
Feel free to leave a comment if you get stuck. 
5 comentarios
  Adam Danz
    
      
 el 3 de Mayo de 2019
				Ah, this is also a common problem.  I'll update that post to mention this.  Thanks for following up!
Más respuestas (0)
Ver también
Categorías
				Más información sobre Web Services en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

