-2

C# コードから電子メールを送信しようとしています。例を次に示します。

MailMessage message = new MailMessage();
            message.To.Add("milos90zr@gmail.com");
            message.Subject = "Registration";
            message.From = new System.Net.Mail.MailAddress("milos90zr@hotmail.com");
            message.Body = "OK";
            SmtpClient smtp = new SmtpClient();
            smtp.Host = "smtp.gmail.com";
            smtp.Send(message);

しかし、私のコードは壊れており、ここにエラーがあります:

The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first. hn4sm3874638bkc.2 - gsmtp
4

1 に答える 1

2

暗号化をオンにする必要があります。

この行を前のどこかに置きますsmtp.Send()

smtpClient.EnableSsl = true;
于 2013-06-25T20:03:55.203 に答える