ユーザーが任意のドメイン (gmail、hotmail、yahoo など) から管理者に電子メールを送信できるようにする「お問い合わせ」フォームを作成するにはどうすればよいですか。つまり、電子メールに任意のドメインを持つすべてのユーザーが、管理者の電子メール アドレスに電子メールを送信できるということです。現在、ユーザーは Gmail アカウントを持っている場合にのみメールを送信できます。助けて、解決策とアドバイスを提供してください。ありがとう。
質問する
736 次
1 に答える
0
Asp.netでは、任意のドメインのユーザー電子メールを設定できますが、有効である必要があります。MailクラスのFromプロパティでユーザーの電子メールを設定します。
protected void SendMail()
{
// Gmail Address from where you send the mail
var fromAddress = "Gmail@gmail.com";
// any address where the email will be sending
var toAddress = YourEmail.Text.ToString();
//Password of your gmail address
const string fromPassword = "Password";
// Passing the values and make a email formate to display
string subject = YourSubject.Text.ToString();
string body = "From: " + YourName.Text + "\n";
body += "Email: " + YourEmail.Text + "\n";
body += "Subject: " + YourSubject.Text + "\n";
body += "Question: \n" + Comments.Text + "\n";
// smtp settings
var smtp = new System.Net.Mail.SmtpClient();
{
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network;
smtp.Credentials = new NetworkCredential(fromAddress, fromPassword);
smtp.Timeout = 20000;
}
// Passing values to smtp object
smtp.Send(fromAddress, toAddress, subject, body);
}
fromAddressは、任意の有効な電子メールアドレスにすることができます。
于 2013-02-26T06:33:51.213 に答える