使用WebProxy发送邮件

使用WebProxy发送邮件System.Net.WebProxy proxy = new System.Net.WebProxy(“itgproxy.redmond.corp.microsoft.com:80”);            proxy.Credentials = System.Net.CredentialCache.DefaultCredentials;            System.Net.Glo

大家好,又见面了,我是你们的朋友全栈君。

使用WebProxy发送邮件
System.Net.WebProxy proxy 
=
 
new
 System.Net.WebProxy(

itgproxy.redmond.corp.microsoft.com:80

);
使用WebProxy发送邮件            proxy.Credentials 

=
 System.Net.CredentialCache.DefaultCredentials;
使用WebProxy发送邮件            System.Net.GlobalProxySelection.Select 

=
 proxy;
使用WebProxy发送邮件            MailMessage m 

=
 
new
 MailMessage();
使用WebProxy发送邮件            m.From 

=
 tbFrom.Text;
使用WebProxy发送邮件            m.To 

=
 tbTo.Text;
使用WebProxy发送邮件            m.Subject 

=
 tbSubject.Text;
使用WebProxy发送邮件            m.Body 

=
 tbBody.Text;
使用WebProxy发送邮件            

//
优先级

使用WebProxy发送邮件

            
switch
(ddlp.SelectedIndex)
使用WebProxy发送邮件使用WebProxy发送邮件            


{

使用WebProxy发送邮件                
case 0:
使用WebProxy发送邮件                    m.Priority 
= MailPriority.High;
使用WebProxy发送邮件                    
break;
使用WebProxy发送邮件                
case 1:
使用WebProxy发送邮件                    m.Priority 
= MailPriority.Low;
使用WebProxy发送邮件                    
break;
使用WebProxy发送邮件                
default:
使用WebProxy发送邮件                    m.Priority 
= MailPriority.Normal;
使用WebProxy发送邮件                    
break;
使用WebProxy发送邮件            }


使用WebProxy发送邮件            

//
格式

使用WebProxy发送邮件

            
if
(ddlp.SelectedIndex
==
0
)
使用WebProxy发送邮件                m.BodyFormat 

=
 MailFormat.Text;
使用WebProxy发送邮件            

else

使用WebProxy发送邮件                m.BodyFormat 

=
 MailFormat.Html;
使用WebProxy发送邮件            

//
以下设置服务器

使用WebProxy发送邮件

            
if
(tbServer.Text
!=
“”
)
使用WebProxy发送邮件使用WebProxy发送邮件            


{

使用WebProxy发送邮件                
使用WebProxy发送邮件                
//以下代码适用于Framework1.1以上版本。
使用WebProxy发送邮件                
//SmtpMail.SmtpServer = tbServer.Text;
使用WebProxy发送邮件
//                m.Fields.Add(“http://schemas.microsoft.com/cdo/configuration/smtpauthenticate“,
使用WebProxy发送邮件
//                    “1”);    //basic authentication
使用WebProxy发送邮件
//                m.Fields.Add(“http://schemas.microsoft.com/cdo/configuration/sendusername“,
使用WebProxy发送邮件
//                    tbUserName.Text); //set your username here
使用WebProxy发送邮件
//                m.Fields.Add(“http://schemas.microsoft.com/cdo/configuration/sendpassword“,
使用WebProxy发送邮件
//                    tbPass.Text);    //set your password here
使用WebProxy发送邮件
            }


使用WebProxy发送邮件            

//
以下处理附件 

使用WebProxy发送邮件

            
string
 strFileName 
=
 FileSelect.PostedFile.FileName;
使用WebProxy发送邮件            

if
(strFileName
!=
“”
)
使用WebProxy发送邮件                m.Attachments.Add(

new
 MailAttachment(strFileName));
使用WebProxy发送邮件            SmtpMail.Send(m);

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/151995.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号