我想使用c#向sms程序发送电子邮件。在文本的正文中,我想调用一个文本框,其中用户放置的值将在那里替换。
下面是我的编码: public string FromAddress = "cmdsa.system@gmail.com";
public string Password = "XXXXXXXXXX";
public string To = "sms@isms.com.my";
public string Subject = "isms";
public string Body =
"STARTISMS
username:password:1
6017xxxxxxx, <-- here is where i want to call a textbox where it will
be replace with the value entered in the box at the
interface.
testing 1234567890
ENDISMS";
public string Smtp = "smtp.gmail.com";
public int Port = 587;
请告诉我一个正确的方法来做到这一点..包括如何在身体部位内写下面的多个文本的正确方法
"STARTISMS
username:password:1
6017xxxxxxx, <-- here is where i want to call a textbox where it will be
replace with the value entered in the box at the
interface.
testing 1234567890
ENDISMS";
答案 0 :(得分:0)
不清楚!为什么要直接输入财产?如果它们是静止的,为了制作身体属性,你可以点击发送按钮来制作它。
body = "S.T" + textBox1.Text;
如果不是,请清楚地解释你的问题。