0

パスワードを忘れた機能を提供したいWindows Phoneアプリを作成しています。ユーザーがパスワードを忘れたボタンを押すと、アプリはユーザーの保存された電子メールIDに電子メールを送信します。Windows phone で使用できる smtp クラスがないため、アプリから電子メール ID (およびパスワード) を受け取り、その ID に電子メールを送信する asp.net Web API を作成したいと考えています。私は Web サービスに不慣れで、これに関する知識がありません。このタスクを達成する方法を教えてください。誰かがコードを提供できる場合は、このような Web サービスが利用できるはずです。

4

4 に答える 4

4

使用できるメールを送信する関数の例を次に示します。また、ASP.NET で Web サービスを作成するためのガイドとなるリンクがいくつかあります。

実際には、このために Web サービスを作成する必要はありません (作成することをお勧めします)。example.com/sendemail.aspx?account=jack.smith&id=223232343のようなパラメーターを渡す簡単で汚い Web フォームを作成できます。

private static void SendEmail(string from, string from_name, string to, string cc, string bcc, string subject, string body, bool isHtml)
{
    SmtpClient mailClient = new SmtpClient(Config.SmptSettings.Server);
    mailClient.Credentials = new NetworkCredential(Config.SmptSettings.UserName, Config.SmptSettings.Password);
    mailClient.Port = Config.SmptSettings.Port;

    MailMessage message = new MailMessage();
    if (!string.IsNullOrEmpty(from_name))
    {
        message.From = new MailAddress(from, from_name);
    }
    else
    {
        message.From = new MailAddress(Formatter.UnFormatSqlInput(from));
    }

    message.To.Add(new MailAddress(to));

    if (!string.IsNullOrEmpty(bcc, cc))
    {
        message.CC.Add(cc);
        message.Bcc.Add(bcc);
    }

    message.Subject = subject;
    message.Body = body;
    message.IsBodyHtml = isHtml;

    mailClient.EnableSsl = Config.SmptSettings.SSL;
    mailClient.Send(message); 
}
于 2013-08-23T09:27:14.567 に答える
0

For those using .NET Core, note that there is currently no support for sending emails.

See the following issue for .NET Core via GitHub: https://github.com/dotnet/corefx/issues/1006

A an alternative solution has been implemented - MailKit: https://github.com/jstedfast/MailKit

于 2016-10-10T15:50:13.160 に答える
-5
string random;
protected void Page_Load(object sender, EventArgs e)
{

}

protected void btnSubmit_Click(object sender, EventArgs e)
{
    string s1 = string.Empty;
    SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["MyCon"].ConnectionString);
    con.Open();
    SqlCommand cmd = new SqlCommand("select EmailId from tblEmail where EmailId='" + txtemail.Text + "'", con);
    SqlDataReader dr =cmd.ExecuteReader();

    if (dr.HasRows)
    {
        while (dr.Read())
        {
            s1 = dr.GetString(0);
        }
    }
    dr.Close();

    if (s1.Equals(txtemail.Text))
    {
        Session["Email"] = txtemail.Text;

        try
        {
            Random rndm = new Random();
            random = rndm.Next(99999).ToString();
            MailMessage message = new MailMessage();
            message.From = new MailAddress("yourid@gmail.com");
            message.To.Add(new MailAddress(txtemail.Text));
            message.Subject = " Hello... This is Your Serial No to change your password:";
            message.Body = random.ToString();
            message.IsBodyHtml = true;

            SmtpClient client = new SmtpClient();
            client.Host = "smtp.gmail.com";
            client.Port = 587;//Gmail port number
            client.UseDefaultCredentials = true;
            client.EnableSsl = true;
            client.Credentials = new System.Net.NetworkCredential("yourid@gmail.com", "yourpassword");
            client.Send(message);
            SqlCommand cmd1 = new SqlCommand("insert into tblRandom values('" + txtemail.Text + "','" + random.ToString() + "')", con);

            cmd1.ExecuteNonQuery();
            con.Close();
            Response.Write("<script>alert('Security Code Successfully Sent in Your Email Id')</script>");

            Response.Redirect("~/anotherpage.aspx");
        }
        catch (Exception)
        {
           // Response.Write(ee.Message);
            lblmsg.Text = "Please Enter Email-Id..";
            lblmsg.Visible = true;
            //MessageBox.Show("Please Enter Email-ID");
            //Response.Write("<script>alert('Please Enter Email-ID')</script>");
        }
    }
    else
    {
        lblmsg.Text = "Please Enter Correct Email-Id..";
        lblmsg.Visible = true;
    }
}
于 2013-08-23T09:57:16.223 に答える