템플릿 결정, 다른 수신자 추가, 제목 편집 등을 할 수 있는 매크로

템플릿 결정, 다른 수신자 추가, 제목 편집 등을 할 수 있는 매크로

저는 VBA를 처음 사용하며 받는 사람 필드를 기반으로 사용할 템플릿을 결정하고 참조 및 숨은 참조 필드에 특정 수신자를 추가하고 기존 제목에 문자열을 추가할 수 있는 Outlook 매크로를 만들고 싶습니다(예: "example_subject" --> "확인\예제_주제").

내 노력의 결과는 다음과 같습니다.

Sub PO_confirmation()

    Dim myItem As Outlook.mailItem

    Dim recipients As Outlook.recipients
    Dim recipientTo As Outlook.recipient
    Dim recipientCC As Outlook.recipient
    Dim recipientBCC As Outlook.recipient

    Set myItem = ActiveInspector.CurrentItem


    Set recipientTo = myItem.recipients.Add("[email protected]")
    recipientTo.Type = Outlook.OlMailRecipientType.olTo

    Set recipientCC = myItem.recipients.Add("[email protected]")
    recipientCC.Type = Outlook.OlMailRecipientType.olCC

    Set recipientBCC = myItem.recipients.Add("[email protected]")
    recipientBCC.Type = Outlook.OlMailRecipientType.olBCC

    initialSubj = myItem.Subject
    myItem.Subject = "RE:ABC-" & initialSubj

    myItem.Display

End Sub

이제 문제는 숨은 참조 수신자가 항상 받는 사람 필드에 나타나는데 무엇이 잘못되었는지 알 수 없다는 것입니다.

관련 정보