[Outlook] outlook如何?自動CC和BCC郵件發送

來源:互聯網
上載者:User

標籤:style   blog   http   color   io   使用   ar   for   2014   

由於需要在不同機器上發送郵件,最終發送的郵件會在不同的機器上,最終導致郵件丟失,以後想找也找不回來,故在網上搜尋一翻,找到解決辦法。

1. 實現自動CC郵件發送:

方法:使用outlook的配置規則

優點:方法簡單

缺點:發出去的郵件別人可以看到CC裡面的人

開工:

a. HOME->Rules->Manage Rules & Alerts->New Rule,選擇Apply rule on messages I send:

b. 填寫相應帳號:

c. 填寫CC帳號,

d. 點擊Finish,完成設定,發送一封郵件試試,果然成功,但是不好之處在於,cc裡面顯示著自己的名字,這樣好像有點不好,繼續嘗試其他方法

2. 實現自動BCC郵件發送:

方法:使用宏編程實現,其實很簡單,根本不需要我們懂編程,呵呵

優點:能達到我想要的效果

缺點:暫時沒想到

開工:

a. 開啟outlook->ALT + F11,出現如下介面,雙擊開啟ThisOutlookSession,進入編輯介面:

b. 將以下代碼貼入編輯地區:

Private Sub Application_ItemSend(ByVal Item As Object, _    Cancel As Boolean)    Dim objRecip As Recipient    Dim strMsg As String    Dim res As Integer    Dim strBcc As String    On Error Resume Next        ‘ #### USER OPTIONS ####    ‘ address for Bcc — must be SMTP address or resolvable    ‘ to a name in the address book    strBcc = "[email protected]"        Set objRecip = Item.Recipients.Add(strBcc)    objRecip.Type = olBCC    If Not objRecip.Resolve Then        strMsg = "Could not resolve the Bcc recipient. " & _                 "Do you want still to send the message?"        res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _                "Could Not Resolve Bcc Recipient")        If res = vbNo Then            Cancel = True        End If    End If        Set objRecip = NothingEnd Sub

c. 儲存(CTRL+S)後,關閉該視窗,開啟outlook->FILE->Options->Trust Center->Trust Center Settings,進行如下設定:

d. 設定完成之後,大功告成,重新啟動outlook,會有個提示是否啟用宏,選擇是即可,趕緊嘗試一下,發送一封郵件,哇哈成功~!

備忘:

以上兩種辦法在2013和2010上均嘗試成功。

參考串連:

http://www.crazycen.com/windows/1432.html

http://jingyan.baidu.com/article/6dad5075ad0c4ca123e36ef3.html

[Outlook] outlook如何?自動CC和BCC郵件發送

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.