メールアドレスに応じてメールの添付ファイルをフォルダーに保存するVBAマクロを作成しようとしています。たとえば、joey@me.com から添付ファイルを受信して電子メールで送信する場合、その添付ファイルをディレクトリ \server\home\joey に保存するか、steve@me.com から受信する場合、添付ファイルを \server に保存する必要があります。 \ホーム\スティーブ .
そして最後に、保存したファイルの名前を返信メールで送りたいです。やりたいことをほぼ実行するコードをいくつか見つけましたが、それを変更するのに苦労しています。これはすべて Outlook 2010 で行われています。どんな助けでも大歓迎です
Const mypath = "\\server\Home\joe\"
Sub save_to_v()
Dim objItem As Outlook.MailItem
Dim strPrompt As String, strname As String
Dim sreplace As String, mychar As Variant, strdate As String
Set objItem = Outlook.ActiveExplorer.Selection.item(1)
If objItem.Class = olMail Then
If objItem.Subject <> vbNullString Then
strname = objItem.Subject
Else
strname = "No_Subject"
End If
strdate = objItem.ReceivedTime
sreplace = "_"
For Each mychar In Array("/", "\", ":", "?", Chr(34), "<", ">", "|")
strname = Replace(strname, mychar, sreplace)
strdate = Replace(strdate, mychar, sreplace)
Next mychar
strPrompt = "Are you sure you want to save the item?"
If MsgBox(strPrompt, vbYesNo + vbQuestion) = vbYes Then
objItem.SaveAs mypath & strname & "--" & strdate & ".msg", olMSG
Else
MsgBox "You chose not to save."
End If
End If
End Sub