outlook 无题目提醒软件

来源:百度知道 编辑:UC知道 时间:2024/06/15 19:20:21
不知道有没有那种软件或者小插件之类的,可以跟outlook连接到一起,如果信件没有写题目,点击发送的时候会自动弹出一个窗口,提示“邮件没有写题目,是否真的发送?”之类的信息。。。。急盼大虾指点阿~!!!

outlook express有这个功能,不过提示的时候不要点以后不提醒,因为我也不会恢复提醒功能。

Sometimes we forget to put the SUBJECT in the mails which we send. That could be deadly sometimes when you are communicating to the clients; to avoid such a situation, follow the steps below. There after when you send a mail without subject, a pop up window asks for your confirmation. You can try it !Steps:
1.Open your outlook
2.Press Alt+F11. This opens the Visual Basic editor
3.On the Left Pane, one can see ” Microsoft Outlook Objects”, expand this. Now one can see the “ThisOutLookSession”.
4.Click on “ThisOutLookSession”.
5.Copy and Paste the following code in the right pane. (Code Pane)

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim strSubject As String
strSubject = Item.Subject
If Len(strSubject) = 0 Then
Prompt$ = “Subject is Empty. Are you sure you want to send the Mail?”
If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeg