[原创]在Managed Code通过Google Gmail发送邮件以及如何通过Outlook配置Gmail

在项目开发中,发送邮件时一种非常常见的功能。一般的情况下,大型的公司都有自己的邮件系统,我们可以直接通过公司的Pop/SMTP Server进行邮件的发送和接收。不过,对于一些小公司不具有这样的条件,他们一般通过一些公共的邮件服务通过商提供的邮件服务。比如Sina,163就是很好的、常用的邮件服务。不过相比之下,我还是习惯使用Google Gmail。

接下来,我将介绍两方面来介绍今天的内容,如果通过Managed code通过Gmail进行邮件的发送,以及如何在Outlook中配置Gmail。今天介绍的东西和技术不是很沾边。只是觉得具有一定的实用性,同时介绍一下我在使用过程遇到的一些问题,希望给大家在使用过程中提供一些参考。

一、在Managed code中通过Gmail发送邮件

我们知道,SMTP是我们最常用的邮件传输的协议。通过SMTP方式,我们只需要配置相应的STMP Server和Port,使用我们的帐号和密码登录到STMP Server,理论上我们就可以进行邮件的发送了。对于Google Gmail,对应的信息如下:

Pop3 Server (Port: 995) :pop.gmail.com, SSL

SMTP Server (Port: 25, 465, 587):smtp.gmail.com, TLS

你通过你注册的Gmail帐号和密码就可以登录smtp.gmail.com。下面是一段简单的C# Code。

using  System;
using  System.Collections.Generic;
using  System.Text;
using  System.Net.Mail;
using  System.Net;

namespace  Artech.Mail.ConsoleApp
{
    
class Program
    
{
        
const string ADDRESS_FROM = "from@gail.com";
        
const string ADDRESS_TO = "to@gmail.com";
        
const string USER_ID = "MyAccount";
        
const string PASSWORD = "password";
        
const string SMTP_SERVER = "smtp.gmail.com";
        
const int PORT = 587;

        
static void Main(string[] args)
        
{
                SendMail(SMTP_SERVER, PORT);
                Console.Read();        
           
        }


        
static void SendMail(string smtpServer, int port)
        
{
            SmtpClient mailClient 
= new SmtpClient(smtpServer, 587);
            mailClient.EnableSsl 
= true;
            NetworkCredential crendetial 
= new NetworkCredential(USER_ID, PASSWORD);
            mailClient.Credentials 
= crendetial;
            MailMessage message 
= new MailMessage(ADDRESS_FROM, ADDRESS_TO, "This is a subject""This is the body of the mail");
           
            mailClient.Send(message);
            Console.WriteLine(
"Mail has been sent to '{0}'", ADDRESS_TO);
        }

    }

}

熟悉System.Net.Mail. SmtpClient,对上面的Code应该是很熟悉了,在这里我就不想对上面的逻辑多做介绍了。不过我需要补充几点的是:

1.通过Gmail,你只能以你登录到SMTP Server的Account的名义对外发信,以上面为例,我以” MyAccount”最为Gmail的Account登录,向Email address 为to@gmail.com发送邮件,虽然在SmtpClient.Send方法中的我指定的From address为from@gail.com,当收信人受到该邮件的时候,邮件的发件人是MyAccount@gail.com,不会为from@gail.com。这些很有必要的,可以防止你利用别人的名义发送邮件。这种机制并不是通用的,我就和同事开过这样的玩笑:通过公司的STMP Server以另一个同事的名义向他发邮件。

2.虽然Google对外宣称他们开发的SMTP Server的Port为25,465和587,但是在代码中,我使用25和587一切正常,当时当我使用465的时候,怎么也发不出去。但是当我在Outlook中把Port配置为465的时候,发送邮件也正常。我还没来得及查阅到底是什么问题。知道原因的朋友,请不吝赐教。

3.对于像这种邮件服务功能的代码,我们一般写成可配置的。因为对于对于帐户和密码,甚至是STMP Server,都有可能经常的变换。但是我们不用通过常用的<AppSettings>来配置,也不用定义我们的Custom ConfigurationSection。因为Configuration System已经为我们定义的内置的<mailSettings>来配置邮件相关的信息。比如:

<? xml version="1.0" encoding="utf-8"  ?>
< configuration >
  
< system .net >
    
< mailSettings >
      
< smtp  from ="MyAccount@gmail.com" >
        
< network  host ="smtp.gmail.com"
                 password
="password"
                 port
="587"
                 userName
=" MyAccount @gmail.com" />
      
</ smtp >
    
</ mailSettings >
  
</ system.net >
</ configuration >

对于Gmail,from实际上没有什么意义。

现在我们就可以进一步地简化我们的Managed code了:

static   void  SendMail()
        
{
            SmtpClient mailClient 
= new SmtpClient();
            mailClient.EnableSsl 
= true;
            MailMessage message 
= new MailMessage(ADDRESS_FROM, ADDRESS_TO, "This is a subject""This is the body of the mail");

            mailClient.Send(message);
            Console.WriteLine(
"Mail has been sent to '{0}'", ADDRESS_TO);
        }

二、通过Outlook来配置Gmail

Outlook作为专业的邮件管理的办公软件,为我们进行邮件的接收和发送、以及邮件的管理提供了极大的便利。下面我来简单介绍一下如何通过Outlook来配置Gmail。

1.登录Gmail,通过Settings Navigator进行Gmail的设置。


2.选择”Forwarding and POP” Tab中选中Enable POP for all mail (even mail that's already been downloaded) 选项。


3. 在Outlook中,通过Tools->Options->Mail Setup->Email accounts进入Account Setting对话框。如果你已经有了一个Account,那么在第一个tab “Email”中更新的该Account。进行如下设置。如果你需要新创建一个account, 请直接到Step6。

4. Click “More Setting”,弹出”Internet E-mail setting”对话框,选择”Advance” Table,进行如下设置:


5. 选择”Outgoing Server” Tab,做如下设置

6. Account Setting对话框中Click "new..."按钮,就如"Add New Email Account"对话框,选择第一个选项。

7.Click “Next”,选择"Manually cinfigure server seetings or additional server types" Check Box.

8. Click “Next”,选择第一个选项"Internet E-Mail",接下来的配置就和上面一样了。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值