本文介绍了用户的邮件编辑器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我正在使用以下来自此新闻组的代码来启动 用户的默认电子邮件编辑器,它运行正常。但是,我想 将一个文件附加到编辑器(比如使用word作为编辑器) Dim psi作为新的ProcessStartInfo psi.UseShellExecute = True psi.FileName =" mailto:" &安培; HttpUtility.UrlEncode([To])& "?subject =" &安培;主题& "&安培;主体= QUOT; &安培;消息 Process.Start(psi) 我对变量使用什么(比如& body用于文本正文)? - 休斯顿丹尼斯I am using the following code that I got from this newsgroup to start auser''s default e-mail editor and it works ok. However, I would like toattach a file to the editor (like using word as editor)Dim psi As New ProcessStartInfopsi.UseShellExecute = Truepsi.FileName = "mailto:" & HttpUtility.UrlEncode([To]) &"?subject=" & Subject & "&body=" & MessageProcess.Start(psi)What do I use for the variable (like &body is used for the text body)?--Dennis in Houston推荐答案 这篇关于用户的邮件编辑器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-07 02:13