메인 컨텐츠로 가기

Outlook에서 회신 할 때 첨부 파일을 보관하는 방법은 무엇입니까?

Microsoft Outlook에서 이메일 메시지를 전달할 때이 이메일 메시지의 원본 첨부 파일은 전달 된 메시지에 남아 있습니다. 그러나 이메일 메시지에 회신 할 때 원본 첨부 파일은 새 회신 메시지에 첨부되지 않습니다. 여기에서는 Microsoft Outlook에서 회신 할 때 원본 첨부 파일을 유지하는 방법에 대한 몇 가지 트릭을 소개합니다.

수동으로 복사 및 붙여 넣기하여 첨부 파일로 회신
VBA에서 첨부 파일로 자동 회신
Outlook 용 Kutools를 사용하여 한 번의 클릭으로 첨부 파일로 회신


수동으로 복사 및 붙여 넣기하여 첨부 파일로 회신

이메일 메시지의 원본 첨부 파일을 수동으로 복사하고 나중에 이메일 메시지에 회신 할 때 회신 메시지 창에 붙여 넣을 수 있습니다.

1 단계 : 전자 메일 메시지를 클릭하여 읽기 창에서 미리 봅니다.

2 단계 : 미리보기 이메일 메시지에서 첨부 파일 하나를 마우스 오른쪽 버튼으로 클릭하고 모두 선택 오른쪽 클릭 메뉴에서.

3 단계 : 선택한 첨부 파일을 마우스 오른쪽 단추로 클릭하고 오른쪽 클릭 메뉴에서.

4 단계 : 다음을 클릭하여 이메일 메시지에 회신합니다. 댓글 온 버튼 탭 (또는 Outlook 2007의 도구 모음).

5 단계 : 회신 메시지 창에서 파스타 온 버튼 보내실 내용 탭을 클릭하여 첨부 파일을 붙여 넣으세요.

Outlook 2013 이상 버전을 사용하는 경우 팝 아웃 읽기 창의 왼쪽 상단에서 회신 메시지 창을 해제합니다. 자세히 알아 보려면 클릭하세요…

6 단계 : 회신 메시지를 작성하고 전송 버튼을 클릭합니다.


Outlook에서 원본 첨부 파일을 사용하여 이메일에 쉽게 회신 :

Outlook 용 Kutools's 첨부 파일로 답장 유틸리티를 사용하면받은 전자 메일에 Outlook의 원본 첨부 파일을 쉽게 회신 할 수 있습니다. 아래 데모를 참조하십시오. 
지금 다운로드하여 사용해 보세요! (60일 무료 트레일)


VBA에서 첨부 파일로 자동 회신 

원본 첨부 파일로 자동으로 회신하는 데 도움이되는 VBA 매크로가 있습니다.

참고 : VBA 매크로를 실행하기 전에 다음을 수행해야합니다. Microsoft Outlook에서 매크로 사용.

1 단계 : 첨부 파일과 함께 회신 할 전자 메일 메시지를 선택합니다.

2 단계 : 다른 + F11 키를 눌러 Microsoft Visual Basic for Applications 창을 엽니 다.

3 단계 : 왼쪽 표시 줄에서 Project1 및 Microsoft Outlook 개체를 확장하고 ThisOutlook세션 그것을여십시오.

4 단계 : ThisOutlookSession 창에 다음 코드를 붙여 넣습니다.

Sub RunReplyWithAttachments()
'Update by Extendoffice 20180830
    Dim xReplyItem As Outlook.MailItem
    Dim xItem As Object
    On Error Resume Next
    Set xItem = GetCurrentItem()
    If xItem Is Nothing Then Exit Sub
    Set xReplyItem = xItem.Reply
    CopyAttachments xItem, xReplyItem
    xReplyItem.Display
    Set xReplyItem = Nothing
    Set xItem = Nothing
End Sub
Sub RunReplyAllWithAttachments()
    Dim xReplyAllItem As Outlook.MailItem
    Dim xItem As Object
    Set xItem = GetCurrentItem()
    If xItem Is Nothing Then Exit Sub
    Set xReplyAllItem = xItem.ReplyAll
    CopyAttachments xItem, xReplyAllItem
    xReplyAllItem.Display
    Set xReplyAllItem = Nothing
    Set xItem = Nothing
End Sub
    
Function GetCurrentItem() As Object
    On Error Resume Next
    Select Case TypeName(Application.ActiveWindow)
        Case "Explorer"
            Set GetCurrentItem = Application.ActiveExplorer.Selection.Item(1)
        Case "Inspector"
            Set GetCurrentItem = Application.ActiveInspector.currentItem
    End Select
End Function
    
Sub CopyAttachments(SourceItem As MailItem, TargetItem As MailItem)
    Dim xFilePath As String
    Dim xAttachment As Attachment
    Dim xFSO As Scripting.FileSystemObject
    Dim xTmpFolder As Scripting.Folder
    Dim xFldPath As String
    Set xFSO = New Scripting.FileSystemObject
    Set xTmpFolder = xFSO.GetSpecialFolder(2)
    xFldPath = xTmpFolder.Path & "\"
    For Each xAttachment In SourceItem.Attachments
        If IsEmbeddedAttachment(xAttachment) = False Then
            xFilePath = xFldPath & xAttachment.Filename
            xAttachment.SaveAsFile xFilePath
            TargetItem.Attachments.Add xFilePath, , , xAttachment.DisplayName
            xFSO.DeleteFile xFilePath
        End If
    Next
    Set xFSO = Nothing
    Set xTmpFolder = Nothing
End Sub

Function IsEmbeddedAttachment(Attach As Attachment)
    Dim xAttParent As Object
    Dim xCID As String, xID As String
    Dim xHTML As String
    On Error Resume Next
    Set xAttParent = Attach.Parent
    xCID = ""
    xCID = Attach.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x3712001F")
    If xCID <> "" Then
        xHTML = xAttParent.HTMLBody
        xID = "cid:" & xCID
        If InStr(xHTML, xID) > 0 Then
            IsEmbeddedAttachment = True
        Else
            IsEmbeddedAttachment = False
        End If
    End If
End Function

5 단계 : F5 이 매크로를 실행하려면 키를 누르십시오. 오프닝에서 매크로 대화 상자에서 RunReplyAllWith첨부 파일 첨부 파일로 모두 회신하려면. 그렇지 않으면 첨부 파일을 사용하여 Reply를 실행합니다. 다음을 클릭합니다 달리기 버튼을 클릭합니다.

그런 다음 원본 첨부 파일을 모두 첨부하여 회신 메시지 창을 엽니 다.

6 단계 : 회신 메시지를 작성하고 전송 버튼을 클릭합니다.


Outlook 용 Kutools를 사용하여 첨부 파일로 자동 회신

  첨부로 답장 ~의 유용성 Outlook 용 Kutools 클릭 한 번으로 원본 첨부 파일이있는 이메일에 답장 할 수 있습니다.

Outlook 용 Kutools : 100 개 이상의 편리한 Outlook 추가 기능으로 60 일 동안 제한없이 무료 체험.

1. 회신 할 첨부 파일이 포함 된 이메일을 선택합니다.

2. 그런 다음 쿠툴 > 첨부 파일로 답장 > 첨부 파일로 답장. 스크린 샷보기 :

그런 다음 선택한 이메일의 모든 첨부 파일이 첨부 응답 메시지의 필드입니다. 이메일을 작성하고 보냅니다.

이 유틸리티의 무료 평가판을 받으려면 다음으로 이동하십시오. 소프트웨어 무료 다운로드 먼저 위의 단계에 따라 작업을 적용하십시오.


Outlook 용 Kutools를 사용하여 한 번의 클릭으로 첨부 파일로 회신

  이 유틸리티의 무료 평가판 (60 일)을 받으려면 그것을 다운로드하려면 클릭하십시오을 클릭 한 다음 위 단계에 따라 작업 적용으로 이동합니다.


관련 기사 :


최고의 사무 생산성 도구

Outlook 용 Kutools - 귀하의 전망을 강화하는 100개 이상의 강력한 기능

🤖 AI 메일 도우미: AI 마법이 적용된 즉각적인 전문가 이메일 - 원클릭으로 천재적인 답변, 완벽한 어조, 다국어 숙달이 가능합니다. 손쉽게 이메일을 변환하세요! ...

📧 이메일 자동화: 부재중(POP 및 IMAP에서 사용 가능)  /  이메일 보내기 예약  /  이메일 발송 시 규칙에 따른 자동 참조/숨은참조  /  자동 전달(고급 규칙)   /  인사말 자동 추가   /  여러 수신자 이메일을 개별 메시지로 자동 분할 ...

📨 이메일 관리: 이메일을 쉽게 기억할 수 있습니다.  /  제목 및 기타 사기 이메일 차단  /  중복 이메일 삭제  /  고급 검색  /  폴더 통합 ...

📁 첨부 파일 프로일괄 저장  /  일괄 분리  /  일괄 압축  /  자동 저장   /  자동 분리  /  자동 압축 ...

🌟 인터페이스 매직: 😊더 예쁘고 멋진 이모티콘   /  탭 보기로 Outlook 생산성 향상  /  문을 닫는 대신 전망을 최소화하세요 ...

???? 원클릭 불가사의: 수신 첨부 파일과 함께 전체 회신  /   피싱 방지 이메일  /  🕘발신자의 시간대 표시 ...

👩🏼‍🤝‍👩🏻 연락처 및 캘린더: 선택한 이메일에서 연락처 일괄 추가  /  연락처 그룹을 개별 그룹으로 분할  /  생일 알림 제거 ...

이상 100 특징 당신의 탐험을 기다려주세요! 더 알아보려면 여기를 클릭하세요.

 

 

Comments (26)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Ciao, la macro funziona. Peccato che risponde solo al mittente, allegando gli allegati, e non a tutte le persone presenti in una mail. come si potrebbe modificare per aggiungere questa seconda funzione?

grazie mille
This comment was minimized by the moderator on the site
Buna ziua!

Exista posibilitatea de a da reply all la un email care are persoane in bcc?

Multumesc!
This comment was minimized by the moderator on the site
Hi, I am using your code for reply which is great, thank you form making it available.I have my mail options set to preface comments with my initials which works when I use the standard reply. When I create a reply using this code my intials are not inserted Can you assist please?ThanksSteve
This comment was minimized by the moderator on the site
Hi
I am going to use the code to reply all with attachments in search results from All Mailboxes but it shows me an error and does not work.
please let me know how to change the code to be usable for All Mailboxes.

Best regards
Shahrooz
This comment was minimized by the moderator on the site
Hi,
The error does not cause by the search.
To avoid the error, please click Tools > References to open the References dialog, and then enable the Microsoft Scripting Runtime option. See the attached image for the steps.
This comment was minimized by the moderator on the site
Hi!

Thanks a lot for such a great tool!

Can the command be ran so that the reply window won't pop-up but stay in reading pane view?
This comment was minimized by the moderator on the site
Hi Alexey,
We have released a new version with the tool updated. Thank you for your support.
This comment was minimized by the moderator on the site
Hi Crystal!

thanks for update!
had the macro code changed or it would work only with tool installed?
This comment was minimized by the moderator on the site
Hi Alexey,
The code is used alone without the tool installed.
This comment was minimized by the moderator on the site
Very nice, thanks, but I have compiler error: User-defined type not defined. There is highlighted Dim xFSO As Scripting.FileSystemObject in part Sub CopyAttachments
This comment was minimized by the moderator on the site
Hi Honza,
The code works well in my case. Which Office version do you use?
This comment was minimized by the moderator on the site
me too. I have the problem with the same people above. I use Office 2016.
This comment was minimized by the moderator on the site
I am using office 365 with the same error
This comment was minimized by the moderator on the site
Hi Bob,
Please try:
1. Press the Alt + F11 keys to open the Microsoft Visual Basic for Applications window again;
2. Click Tools > References, and check the Microsoft Scripting Runtime box.
Now the code can work.
This comment was minimized by the moderator on the site
That solve it for me!

Thanks.
This comment was minimized by the moderator on the site
I used VBA code but it attaches with all image (.gif, jpg,...) in email content. Pls show me how to solve this problem?
This comment was minimized by the moderator on the site
Good Day,
The code is updated in the post. The problen now is solved. Please have a try and thanks for your comment.
This comment was minimized by the moderator on the site
In the last part of the script, many of the variables are not defined.
This comment was minimized by the moderator on the site
I have downloaded the Kutools tab. Can I add the 'Reply with Attachment' to my home tab or to Quick Steps??
This comment was minimized by the moderator on the site
Dear Jim,
You can right click the Reply with Attachment button, and select the "Add to Quick Access Toolbar" to add this function to the Quick Access Toolbar on the Ribbon. See screenshot:
This comment was minimized by the moderator on the site
I am trying to use the Reply with Attachments but it isn't adding the attachment, just keeping the link. I use the automatic detach when email is received. Is there a configuration setting that I need to update? Thank you for your help!
This comment was minimized by the moderator on the site
Dear Susan,

The attachments won't locate in the email any more as they are detached automatically from the email. Please turn off the auto detach feature for the sake of using this Reply with Attachment feature.

Best Regards, Crystal.
This comment was minimized by the moderator on the site
how do you turn off the auto detach feature
This comment was minimized by the moderator on the site
Dear Dakota,

If you are using the Auto detach all receiving attachments feature of Kutools for Outlook, please do as below screenshot shown to turn off this feature by unchecking it in your Outlook. Thank you!
There are no comments posted here yet
Load More
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations