我有 5 个按钮将调用此弹出功能来发送电子邮件。如何确定哪个单击的按钮调用了该函数?
public void popup(object sender, EventArgs e)
{
if (MessageBox.Show("You may not Bind, Change, Or Alter Insurance Coverage through e-mail. Confirmation of this e-mail by us initiates any changes to your Insurance. If you need any immediate service please contact our office at 1-800-875-5720.", "IMPORTANT!", MessageBoxButtons.OKCancel) == DialogResult.OK)
{
{
string email = "mailto:davidadfa.t@ifdafdadf.com";
Process.Start(email);
}
}
}