我有了制作邮件发件人的想法。我试图寻找解决方案,但没有一个真正奏效,而且他们的解释很糟糕,或者是否有可能做到这一点?
所以我基本上有这个if else代码来检查它是否为空,如果不是,它会将值发送到邮件。
using System.Net.Mail; //i think this is what i need?
private void button1_Click(object sender, EventArgs e)
{
if(string.IsNullOrWhiteSpace(textBox1.Text) && string.IsNullOrWhiteSpace(textBox2.Text))
{
MessageBox.Show("You're empty!");
}
else if(Int32.Parse(textBox1.Text) != 0)
{
// send text box to mail
}
else
{
MessageBox.Show("Something went wrong.");
System.Threading.Thread.Sleep(2000);
MessageBox.Show("Closing");
System.Threading.Thread.Sleep(1000);
this.Close();
}
}
有人愿意指导我走向正确的方向,或者帮助我解释如何去做?
相关分类