bomberman211
***
- Tham gia
- 23/12/15
- Bài viết
- 351
- Được thích
- 271
- Giới tính
- Nam
Chào các anh chị em, mình có sử dụng đoạn code sau trên Outlook để loại bỏ tiền tố "RE:", "FW:" khi phản hồi hoặc chuyển tiếp email (code mình chôm trên mạng về). Giờ mình muốn thêm 1 nút Cancel bên cạnh Yes và No trong hộp thoại để khi chọn Cancel thì mail không gửi đi nữa, quay lại màn hình soạn thư. Mong mọi người giúp đỡ.
PHP:
Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim strSubject As String
strSubject = Item.Subject
If InStr(Item.Subject, "RE:") > 0 Then
If MsgBox("Do you want to remove the prefix 'RE:'?", vbYesNo) = vbYes Then
strSubject = Replace(Item.Subject, "RE:", "", vbTextCompare)
Else
strSubject = Item.Subject
End If
End If
If InStr(Item.Subject, "FW:") > 0 Then
If MsgBox("Do you want to remove the prefix 'FW:'?", vbYesNo) = vbYes Then
strSubject = Replace(Item.Subject, "FW:", "", vbTextCompare)
Else
strSubject = Item.Subject
End If
End If
Item.Subject = Trim(strSubject)
Item.Save
End Sub
Lần chỉnh sửa cuối: