메인 컨텐츠로 가기

Outlook에서 하나 / 여러 이메일의 모든 첨부 파일을 인쇄하는 방법은 무엇입니까?

아시다시피, 헤더, 본문과 같은 이메일 내용은 입양 부모로서의 귀하의 적합성을 결정하기 위해 미국 이민국에 > 인쇄 Microsoft Outlook에서는 있지만 첨부 파일을 인쇄하지 않습니다. 여기에서는 Microsoft Outlook에서 선택한 이메일의 모든 첨부 파일을 쉽게 인쇄하는 방법을 보여줍니다.


하나의 이메일 메시지에있는 모든 첨부 파일을 하나씩 인쇄

Microsoft Outlook은 빠른 인쇄 이메일 메시지의 첨부 파일을 하나씩 인쇄하는 데 도움이되는 기능입니다.

1. 나중에 인쇄 할 첨부 파일이있는 이메일 메시지를 선택하십시오.

2. 이 이메일에서 첨부 파일 하나를 클릭하십시오.

3. 클릭 빠른 인쇄 버튼의 행위 그룹에 첨부 파일 탭.

참고 : 부착 도구 이메일의 첨부 파일을 클릭 할 때까지 활성화되지 않습니다.

4. 메일 첨부 열기 대화 상자가 나타나면 클릭하십시오. 엽니다 버튼을 클릭합니다.

이 단계는 선택한 첨부 파일을 열고 동시에이 선택한 첨부 파일을 인쇄합니다.

이 이메일의 다른 첨부 파일을 인쇄하려면 2 단계에서 4 단계를 반복하십시오.

Outlook의 여러 이메일에서 모든 첨부 파일을 빠르게 저장 / 내보내기

일반적으로 우리는 활성화하여 하나의 이메일에서 첨부 파일을 저장할 수 있습니다. 부착 도구 적용 모든 첨부 파일 저장 Outlook의 기능. 그러나 여러 전자 메일 또는 Outlook의 전체 메일 폴더에서 첨부 파일을 저장하면 어떻게 될까요? Outlook 용 Kutools를 사용해보십시오. 모두 저장 (첨부 파일) 기능.


여러 이메일에 첨부 파일 저장 kto9

모든 첨부 파일을 하나의 이메일 메시지에 일괄 인쇄

하나의 이메일 메시지에 첨부 파일이 많은 경우 하나씩 인쇄하려면 시간이 많이 걸립니다. 그리고 다음 방법은 선택한 이메일 메시지의 모든 첨부 파일을 일괄 인쇄하는 과정을 쉽게 안내합니다.

1. 나중에 인쇄 할 첨부 파일이있는 이메일 메시지를 선택하십시오.

2. Outlook 2010 이상 버전에서는 입양 부모로서의 귀하의 적합성을 결정하기 위해 미국 이민국에 > 인쇄 > 인쇄 옵션. 다음 스크린 샷을 참조하십시오.

3. 인쇄 대화 상자에서 확인하십시오. 첨부 파일을 인쇄합니다. 첨부 파일은 기본 프린터로만 인쇄됩니다. 에서 옵션 인쇄 옵션 안내

4. 클릭 인쇄 버튼을 클릭합니다.

5. 메일 첨부 열기 대화 상자가 나타나면 엽니다 계속하려면 버튼을 누르십시오. (주의 사항:이 대화 상자는 각 첨부 파일에 대해 개별적으로 나타납니다.)

이제 이 선택한 이메일 메시지의 모든 첨부 파일이 한 번에 인쇄됩니다.


선택한 여러 이메일의 모든 첨부 파일과 사진을 일괄 인쇄합니다.

Outlook에서 메시지 본문의 모든 사진뿐만 아니라 여러 이메일의 모든 첨부 파일을 인쇄하려면 아래 단계에 따라 VBA 코드를 적용하십시오.

1. 메일 링리스트에서 Ctrl 키 or 변화 키를 눌러 첨부 파일을 인쇄 할 여러 이메일을 선택합니다.

2. 프레스 다른 + F11 키를 함께 눌러 Microsoft Visual Basic for Applications 창을 엽니 다.

3. Microsoft Visual Basic for Applications 창에서 도구 > 참고자료. 그런 다음 Microsoft 스크립팅 런타임 옵션은 아래와 같습니다. 완료되면 클릭 OK.

4. 딸깍 하는 소리 끼워 넣다 > 모듈을 클릭 한 다음 VBA 코드 아래에 새 모듈 창에 붙여 넣습니다.

VBA : 여러 Outlook 전자 메일의 모든 첨부 파일 인쇄

Sub PrintAllAttachmentsInMultipleMails()
  'Update by ExtendOffice 2022/08/03
  Dim xShellApp As Object
  Dim xFSO As Scripting.FileSystemObject
  Dim xItem As Object
  Dim xTempFldPath, xFilePath As String
  Dim xSelItems As Outlook.Selection
  Dim xMailItem As Outlook.MailItem
  Dim xAttachments As Outlook.Attachments
  Dim xAttachment As Outlook.Attachment
  Dim xFile As File
  On Error Resume Next
  Set xFSO = New Scripting.FileSystemObject
  xTempFldPath = xFSO.GetSpecialFolder(2).Path & "\Attachments " & Format(Now, "yyyymmddhhmmss") 'xFSO.GetSpecialFolder(2) For saving temporary files
  If xFSO.FolderExists(xTemfldpath) = False Then 'create temporary folder
    xFSO.CreateFolder (xTempFldPath)
  End If
  Set xSelItems = Outlook.ActiveExplorer.Selection
  Set xShellApp = CreateObject("Shell.Application")
  For Each xItem In xSelItems
    If xItem.Class = OlObjectClass.olMail Then
      Set xMailItem = xItem
      Set xAttachments = xMailItem.Attachments
      For Each xAttachment In xAttachments
        xFilePath = xTempFldPath & "\" & xAttachment.FileName
        xAttachment.SaveAsFile (xFilePath)
      Next
    End If
  Next
  For Each xFile In xFSO.GetFolder(xTempFldPath).Files
    VBA.DoEvents
    Call xShellApp.ShellExecute(xFile.Path, "", "", "print", 0)
  Next
  Set xSelItems = Nothing
  Set xShellApp = Nothing
  Set xFSO = Nothing
End Sub

5. 프레스 F5 키를 누르거나 달리기 버튼을 눌러 이 VBA 코드를 실행합니다. 이제 선택한 이메일의 모든 첨부 파일과 메시지 본문의 사진이 인쇄되는 것을 볼 수 있습니다.

참고 :

  • 각 이미지는 인쇄 확인을 묻는 팝업 대화 상자를 표시합니다. 다른 유형의 파일은 직접 인쇄됩니다.
  • 이메일 서명에 이미지가 있는 경우 팝업 대화 상자도 표시됩니다.
  • 네가 얻으면 이 프로젝트의 매크로는 비활성화되어 있습니다. 오류가 발생하면 이 자습서를 확인하십시오. Outlook에서 매크로를 활성화 및 비활성화하는 방법은 무엇입니까?

본문의 사진을 제외하고 선택한 여러 이메일의 모든 첨부 파일을 일괄 인쇄

여러 이메일의 첨부 파일만 인쇄하고 Outlook의 메시지 본문에는 사진을 인쇄하려면 아래 단계에 따라 VBA 코드를 적용하십시오.

1. 메일 링리스트에서 Ctrl 키 or 변화 키를 눌러 첨부 파일을 인쇄 할 여러 이메일을 선택합니다.

2. 프레스 다른 + F11 키를 함께 눌러 Microsoft Visual Basic for Applications 창을 엽니 다.

3. Microsoft Visual Basic for Applications 창에서 도구 > 참고자료. 그런 다음 Microsoft 스크립팅 런타임 옵션은 아래와 같습니다. 완료되면 클릭 OK.

4. 딸깍 하는 소리 끼워 넣다 > 모듈을 클릭 한 다음 VBA 코드 아래에 새 모듈 창에 붙여 넣습니다.

VBA : 여러 Outlook 전자 메일의 모든 첨부 파일 인쇄

Sub PrintAllAttachmentsInMultipleMails()
  'Update by ExtendOffice 2022/08/05
  Dim xShellApp As Object
  Dim xFSO As Scripting.FileSystemObject
  Dim xItem As Object
  Dim xTempFldPath, xFilePath As String
  Dim xSelItems As Outlook.Selection
  Dim xMailItem As Outlook.MailItem
  Dim xAttachments As Outlook.Attachments
  Dim xAttachment As Outlook.Attachment
  Dim xFile As File
  On Error Resume Next
  Set xFSO = New Scripting.FileSystemObject
  xTempFldPath = xFSO.GetSpecialFolder(2).Path & "\Attachments " & Format(Now, "yyyymmddhhmmss") 'xFSO.GetSpecialFolder(2) For saving temporary files
  If xFSO.FolderExists(xTemfldpath) = False Then 'create temporary folder
    xFSO.CreateFolder (xTempFldPath)
  End If
  Set xSelItems = Outlook.ActiveExplorer.Selection
  Set xShellApp = CreateObject("Shell.Application")
  For Each xItem In xSelItems
    If xItem.Class = OlObjectClass.olMail Then
      Set xMailItem = xItem
      Set xAttachments = xMailItem.Attachments
      For Each xAttachment In xAttachments
        If IsEmbeddedAttachment(xAttachment) = False Then
          xFilePath = xTempFldPath & "\" & xAttachment.FileName
          xAttachment.SaveAsFile (xFilePath)
          Debug.Print xFilePath
        End If
      Next
    End If
  Next
  For Each xFile In xFSO.GetFolder(xTempFldPath).Files
    VBA.DoEvents
    Call xShellApp.ShellExecute(xFile.Path, "", "", "print", 0)
  Next
  Set xSelItems = Nothing
  Set xShellApp = Nothing
  Set xFSO = Nothing
End Sub

Function IsEmbeddedAttachment(Attach As Attachment)
Dim xItem As MailItem
Dim xCid As String
Dim xID As String
Dim xHtml As String
On Error Resume Next
IsEmbeddedAttachment = False
Set xItem = Attach.Parent
If xItem.BodyFormat <> olFormatHTML Then Exit Function
xCid = ""
xCid = Attach.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x3712001F")
If xCid <> "" Then
    xHtml = xItem.HTMLBody
    xID = "cid:" & xCid
    If InStr(xHtml, xID) > 0 Then
        IsEmbeddedAttachment = True
    End If
End If
End Function

5. 프레스 F5 키를 누르거나 달리기 버튼을 눌러 이 VBA 코드를 실행합니다. 이제 선택한 이메일의 모든 첨부 파일이 인쇄된 것을 볼 수 있습니다.

참고 :

  • 첨부된 각 이미지는 인쇄 확인을 요청하는 팝업 대화 상자를 표시합니다. 다른 유형의 파일은 직접 인쇄됩니다.
  • 메시지 본문의 이미지는 인쇄되지 않습니다.
  • 네가 얻으면 이 프로젝트의 매크로는 비활성화되어 있습니다. 오류가 발생하면 이 자습서를 확인하십시오. Outlook에서 매크로를 활성화 및 비활성화하는 방법은 무엇입니까?

 


데모 : Outlook 이메일에서 하나 또는 모든 첨부 파일 인쇄


:이 비디오에서 쿠툴 탭 추가 Outlook 용 Kutools. 필요한 경우 클릭하십시오 여기를 눌러 더 많은 정보를 찾으세요. 제한없이 60 일 무료 평가판을 받으려면!


최고의 사무 생산성 도구

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

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

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

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

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

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

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

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

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

 

 

Comments (24)
Rated 5 out of 5 · 1 ratings
This comment was minimized by the moderator on the site
Is it possible to specify a network printer instead of always printing with the standard printer?
This comment was minimized by the moderator on the site
Dear all,

I had tried the VBA and the code runs but many popups are opening on screen to print images from the mail signature (apparently this is considered an attachment). Anyone knows how to solve it?

S.
This comment was minimized by the moderator on the site
If you don't want to print pictures in the body of a message, please use the code below:
Sub PrintAllAttachmentsInMultipleMails()
  'Update by ExtendOffice 2022/08/05
  Dim xShellApp As Object
  Dim xFSO As Scripting.FileSystemObject
  Dim xItem As Object
  Dim xTempFldPath, xFilePath As String
  Dim xSelItems As Outlook.Selection
  Dim xMailItem As Outlook.MailItem
  Dim xAttachments As Outlook.Attachments
  Dim xAttachment As Outlook.Attachment
  Dim xFile As File
  On Error Resume Next
  Set xFSO = New Scripting.FileSystemObject
  xTempFldPath = xFSO.GetSpecialFolder(2).Path & "\Attachments " & Format(Now, "yyyymmddhhmmss") 'xFSO.GetSpecialFolder(2) For saving temporary files
  If xFSO.FolderExists(xTemfldpath) = False Then 'create temporary folder
    xFSO.CreateFolder (xTempFldPath)
  End If
  Set xSelItems = Outlook.ActiveExplorer.Selection
  Set xShellApp = CreateObject("Shell.Application")
  For Each xItem In xSelItems
    If xItem.Class = OlObjectClass.olMail Then
      Set xMailItem = xItem
      Set xAttachments = xMailItem.Attachments
      For Each xAttachment In xAttachments
        If IsEmbeddedAttachment(xAttachment) = False Then
          xFilePath = xTempFldPath & "\" & xAttachment.FileName
          xAttachment.SaveAsFile (xFilePath)
          Debug.Print xFilePath
        End If
      Next
    End If
  Next
  For Each xFile In xFSO.GetFolder(xTempFldPath).Files
    VBA.DoEvents
    Call xShellApp.ShellExecute(xFile.Path, "", "", "print", 0)
  Next
  Set xSelItems = Nothing
  Set xShellApp = Nothing
  Set xFSO = Nothing
End Sub

Function IsEmbeddedAttachment(Attach As Attachment)
Dim xItem As MailItem
Dim xCid As String
Dim xID As String
Dim xHtml As String
On Error Resume Next
IsEmbeddedAttachment = False
Set xItem = Attach.Parent
If xItem.BodyFormat <> olFormatHTML Then Exit Function
xCid = ""
xCid = Attach.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x3712001F")
If xCid <> "" Then
    xHtml = xItem.HTMLBody
    xID = "cid:" & xCid
    If InStr(xHtml, xID) > 0 Then
        IsEmbeddedAttachment = True
    End If
End If
End Function
This comment was minimized by the moderator on the site
Dear Amanda,

Thank you for the code. It worked!

S.
This comment was minimized by the moderator on the site
Hi there,

Sorry that printing images will bring up popups. You will have to confirm each to download all the images. If you don't need to print images, please click Cancel.

Amanda
This comment was minimized by the moderator on the site
I am using Microsoft 365 and this worked after deleting line 9. Thanks! This has saved a bit of time for me.
Rated 5 out of 5
This comment was minimized by the moderator on the site
hallo, ich möchte nur den Anhang der Mails von der angegebenen Adresse senden, wie kann ich das machen, danke
This comment was minimized by the moderator on the site
Vielen, vielen Dank dafür! Hat uns enorm viel Arbeit erspart.Auch ich musste - wie bereits in den Kommentaren geschrieben - die neunte Zeile "Dim xAttachment As Outlook.Attachment On Error Resume Next" entfernen, dann lief der Code einfandfrei durch.
This comment was minimized by the moderator on the site
Hi, this worked fine for me yesterday but now it is saying 'the macros in this project are disabled' Any advice how to enable them? 
This comment was minimized by the moderator on the site
This comment was minimized by the moderator on the site
on line 9 , removing "On Error Resume Next" worked for me.
This comment was minimized by the moderator on the site
Hi everyone, we updated the VBA code in the tutorial on 2022/08/03. If you still need to print all attachments, please check the new code. 😊
This comment was minimized by the moderator on the site
Hi, I have been using this shortcut for a few weeks now, printing all attachments from multiple emails at once, and I have recently been having to remove line 9 as Nilanka said, which has been working, but this no longer works. Im getting the warning box saying the macros in this project are disabled.....and so on... if someone has a solution to make this work as it has been prior to now, please lmk, as i am selecting about 60 emails all containing attachments to print. Thanks
This comment was minimized by the moderator on the site
This comment was minimized by the moderator on the site
Thank you 
This comment was minimized by the moderator on the site
yes this just worked for me as well. Thank you!
This comment was minimized by the moderator on the site
the VBA code gives syntax is error
This comment was minimized by the moderator on the site
if a pdf has the same name the macro prints just one pdf, how can i change the code in order to modify the pdf name?
This comment was minimized by the moderator on the site
if you want to print all attachments together in 1 email here's what you do. first make a folder on your desktop....I named mine "print". go to the email with the attachments....highlight all of the attachments, right click, save all attachments to the print folder. Open the print folder.....highlight all of them.....right click.....print.



now if only I could figure out how to print all the attachments in 200 emails without opening each one and printing it.
This comment was minimized by the moderator on the site
Kutools for Outlook's Detach All (Attachments) feature can help you download all attachments from multiple emails with several clicks! https://www.extendoffice.com/product/kutools-for-outlook/outlook-detach-attachments.html
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