私はコーディングをお願いします。電子メールにメッセージを送信しようとしていますが、ボタンをクリックしてメッセージを送信しようとするとエラーが発生します。下記のコーディングです:c#メール/メッセージ/ SMTPエラーを送信
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net;
using System.Net.Mail;
namespace CO6009DissertationV5
{
public partial class frmSendMsg : Form
{
public frmSendMsg()
{
InitializeComponent();
}
private void btnSend_Click(object sender, EventArgs e)
{
SmtpClient client = new SmtpClient();
client.Host = "smtp.gmail.com";
client.Port = 587;
client.EnableSsl = true;
System.Net.NetworkCredential userpassword = new System.Net.NetworkCredential();
userpassword.UserName = "[email protected]";
userpassword.Password = "password";
client.Credentials = userpassword;
MailMessage msg = new MailMessage("[email protected]", "[email protected]");
**msg.To.Add(new MailAddress(txtBoxToEmail.Text));**
msg.Body = "<b> Sender's Name: </b>" + txtBoxName.Text + "<p><b> Sender's E-mail: </b>" + txtBoxEmail.Text + "<p><b>Sender's Subject: </b>" + txtBoxSubject.Text + "<p><b>Sender's Message: </b>" + "<p>" + txtBoxMsg.Text;
msg.Subject = txtBoxSubject.Text;
msg.IsBodyHtml = true;
try
{
client.Send(msg);
lblMsgStatus.Text = "<p> Message Successfully Sent </p>";
}
catch (Exception ex)
{
lblMsgStatus.Text = "Send failed";
}
}
}
}
主な問題は、この行のようだ:
msg.To.Add(new MailAddress(txtBoxToEmail.Text));
プロジェクトがエラー行与え、ここで停止し続けたよう:
{ "パラメータを'addresses'は空の文字列にすることはできません。\ r \ nパラメータ名:アドレス "}。
ご協力いただければ幸いです。
ここにあなたのユーザー/パスワードでコードを貼り付けないでください! – Pikoh
入手したエラーメッセージのテキストを追加してください。 – Filburt
また、[Gmail経由で電子メールを送信する](http://stackoverflow.com/q/32260/205233)をチェックしてください。他にも多くの質問があります。以前はあなたのエラーが発生した可能性が非常に高いです。 – Filburt