个人识别信息 (PII) 通常是通过非加密电子邮件无意中传输的。大多数情况下,这些数据存储在 Excel 或 Access 电子表格中。
我想在点击发送后识别 Access 或 Excel 附件并询问“此电子邮件附加了 Access 或 Excel 文件,您确定这些不包含 PII 吗?”
在附件名称中识别“xlsx”或“accdb”的标准我只是不明白。
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
If Right([attachment_Name],4) = xlsx then
answer = MsgBox("There are Access or Excel files attached to this email, are you sure these do not contain PHI?",vbYesNo)
If answer = vbNo
Cancel = True
Else
End If
End If
End Sub