Message: Failure sending mail. Source: System HelpLink:

1 vue (au cours des 30 derniers jours)
khouloud daboussi
khouloud daboussi le 2 Juin 2019
NET.addAssembly('System.Net')
import System.Net.Mail.*;
mySmtpClient = SmtpClient('mail.google.com');
mySmtpClient.UseDefaultCredentials = false;
mySmtpClient.Credentials = System.Net.NetworkCredential('...@gmail.com', '****');
from = MailAddress('.....com');
to = MailAddress('.....com');
myMail = MailMessage(from, to);
myMail.Subject = ['Test message: ' datestr(now)];
myMail.SubjectEncoding = System.Text.Encoding.UTF8;
myMail.Body = '<b>Test Mail</b><br>using <b>HTML</b>';
myMail.BodyEncoding = System.Text.Encoding.UTF8;
myMail.IsBodyHtml = true;
mySmtpClient.Send(myMail)

Réponses (0)

Catégories

En savoir plus sur Call Web Services from MATLAB Using HTTP dans Help Center et File Exchange

Produits


Version

R2016a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by