ไปยังเนื้อหาหลัก

วิธีเก็บเอกสารแนบเมื่อตอบกลับใน Outlook?

เมื่อเราส่งต่อข้อความอีเมลใน Microsoft Outlook ไฟล์แนบต้นฉบับในข้อความอีเมลนี้จะยังคงอยู่ในข้อความที่ส่งต่อ อย่างไรก็ตามเมื่อเราตอบกลับข้อความอีเมลไฟล์แนบต้นฉบับจะไม่ถูกแนบมาในข้อความตอบกลับใหม่ ที่นี่เราจะแนะนำเทคนิคสองสามประการเกี่ยวกับการเก็บไฟล์แนบต้นฉบับเมื่อตอบกลับใน Microsoft Outlook

ตอบกลับพร้อมไฟล์แนบโดยการคัดลอกและวางด้วยตนเอง
ตอบกลับพร้อมไฟล์แนบโดยอัตโนมัติโดย VBA
คลิกเพียงครั้งเดียวเพื่อตอบกลับพร้อมไฟล์แนบด้วย Kutools for Outlook


ตอบกลับพร้อมไฟล์แนบโดยการคัดลอกและวางด้วยตนเอง

เราสามารถคัดลอกไฟล์แนบต้นฉบับในข้อความอีเมลด้วยตนเองและวางในหน้าต่างข้อความตอบกลับเมื่อเราตอบกลับข้อความอีเมลในภายหลัง

ขั้นตอนที่ 1: คลิกข้อความอีเมลเพื่อดูตัวอย่างในบานหน้าต่างการอ่าน

ขั้นตอนที่ 2: คลิกขวาที่ไฟล์แนบหนึ่งไฟล์ในข้อความอีเมลแสดงตัวอย่างและเลือกไฟล์ เลือกทั้งหมด จากเมนูคลิกขวา

ขั้นตอนที่ 3: คลิกขวาที่ไฟล์แนบที่เลือกแล้วเลือกไฟล์ คัดลอก จากเมนูคลิกขวา

ขั้นตอนที่ 4: ตอบกลับข้อความอีเมลโดยคลิกที่ไฟล์ ตอบ ปุ่มบน หน้าแรก แท็บ (หรือบน Toolbar ใน Outlook 2007)

ขั้นตอนที่ 5: ในหน้าต่างข้อความตอบกลับคลิกไฟล์ พาสต้า ปุ่มบน ระบุความประสงค์หรือขอข้อมูลเพิ่มเติม เพื่อวางไฟล์แนบเหล่านี้

หากคุณกำลังใช้ Outlook 2013 หรือเวอร์ชันที่ใหม่กว่าให้คลิกไฟล์ เปิดออก ที่มุมซ้ายบนของบานหน้าต่างการอ่านเพื่อปล่อยหน้าต่างข้อความตอบกลับ คลิกเพื่อทราบข้อมูลเพิ่มเติม ...

ขั้นตอนที่ 6: เขียนข้อความตอบกลับและคลิกไฟล์ ส่ง ปุ่ม


ตอบกลับอีเมลได้อย่างง่ายดายด้วยไฟล์แนบต้นฉบับใน Outlook:

Kutools สำหรับ Outlook's ตอบกลับด้วยไฟล์แนบ ยูทิลิตี้สามารถช่วยให้คุณตอบกลับอีเมลที่ได้รับได้อย่างง่ายดายด้วยไฟล์แนบต้นฉบับใน Outlook ดูการสาธิตด้านล่าง: 
ดาวน์โหลดและทดลองใช้ทันที! (เส้นทางฟรี 60 วัน)


ตอบกลับพร้อมไฟล์แนบโดยอัตโนมัติโดย VBA 

มีมาโคร VBA ที่สามารถช่วยคุณตอบกลับพร้อมไฟล์แนบต้นฉบับโดยอัตโนมัติ

หมายเหตุ: ก่อนที่คุณจะเรียกใช้แมโคร VBA คุณต้อง เปิดใช้งานแมโครใน Microsoft Outlook.

ขั้นตอนที่ 1: เลือกข้อความอีเมลที่คุณจะตอบกลับพร้อมไฟล์แนบ

ขั้นตอนที่ 2: กดปุ่ม อื่น ๆ + F11 ปุ่มเพื่อเปิดหน้าต่าง Microsoft Visual Basic for Applications

ขั้นตอนที่ 3: ขยาย Project1 และ Microsoft Outlook Objects ในแถบด้านซ้ายและดับเบิลคลิกที่ไฟล์ นี้OutlookSession เพื่อเปิด

ขั้นตอนที่ 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 กุญแจสำคัญในการเรียกใช้แมโครนี้ ในการเปิด แมโคร คลิกตกลง เรียกใช้ตอบกลับทั้งหมดด้วยไฟล์แนบ หากคุณต้องการตอบกลับทุกคนพร้อมไฟล์แนบ มิฉะนั้นให้เลือก เรียกใช้ตอบกลับด้วยไฟล์แนบ จากนั้นคลิกที่ วิ่ง ปุ่ม

จากนั้นจะเปิดหน้าต่างข้อความตอบกลับพร้อมแนบไฟล์แนบต้นฉบับทั้งหมด

ขั้นตอนที่ 6: เขียนข้อความตอบกลับแล้วคลิก ส่ง ปุ่ม


ตอบกลับพร้อมไฟล์แนบโดยอัตโนมัติด้วย Kutools for Outlook

พื้นที่ ตอบกลับด้วยไฟล์แนบ ประโยชน์ของ Kutools สำหรับ Outlook สามารถช่วยคุณตอบกลับอีเมลพร้อมไฟล์แนบต้นฉบับได้ในคลิกเดียว

Kutools สำหรับ Outlook : ด้วยโปรแกรมเสริม Outlook ที่มีประโยชน์มากกว่า 100+ รายการ ทดลองใช้ฟรีโดยไม่มีข้อ จำกัด ภายใน 60 วัน.

1. เลือกอีเมลที่มีไฟล์แนบที่คุณต้องการตอบกลับ

2 จากนั้นคลิก Kutools > ตอบกลับด้วยไฟล์แนบ > ตอบกลับด้วยไฟล์แนบ. ดูภาพหน้าจอ:

จากนั้นไฟล์แนบทั้งหมดของอีเมลที่เลือกจะปรากฏในไฟล์ ที่แนบมา ฟิลด์ของข้อความตอบกลับ เขียนอีเมลของคุณและส่ง

หากคุณต้องการทดลองใช้ยูทิลิตีนี้ฟรีโปรดไปที่ ดาวน์โหลดซอฟต์แวร์ฟรี ก่อนแล้วไปใช้การดำเนินการตามขั้นตอนข้างต้น


คลิกเพียงครั้งเดียวเพื่อตอบกลับพร้อมไฟล์แนบด้วย Kutools for Outlook

  หากคุณต้องการทดลองใช้ยูทิลิตีนี้ฟรี (60 วัน) กรุณาคลิกเพื่อดาวน์โหลดแล้วไปใช้การดำเนินการตามขั้นตอนข้างต้น


บทความที่เกี่ยวข้อง:


สุดยอดเครื่องมือเพิ่มผลผลิตในสำนักงาน

Kutools สำหรับ Outlook - คุณสมบัติอันทรงพลังมากกว่า 100 รายการเพื่อเติมพลังให้กับ Outlook ของคุณ

🤖 ผู้ช่วยจดหมาย AI: ส่งอีเมลระดับมืออาชีพทันทีด้วยเวทมนตร์ AI คลิกเพียงครั้งเดียวเพื่อตอบกลับอย่างชาญฉลาด น้ำเสียงที่สมบูรณ์แบบ การเรียนรู้หลายภาษา เปลี่ยนรูปแบบการส่งอีเมลอย่างง่ายดาย! ...

📧 การทำงานอัตโนมัติของอีเมล: ไม่อยู่ที่สำนักงาน (ใช้ได้กับ POP และ IMAP)  /  กำหนดการส่งอีเมล  /  Auto CC/BCC ตามกฎเมื่อส่งอีเมล  /  ส่งต่ออัตโนมัติ (กฎขั้นสูง)   /  เพิ่มคำทักทายอัตโนมัติ   /  แบ่งอีเมลผู้รับหลายรายออกเป็นข้อความส่วนตัวโดยอัตโนมัติ ...

📨 การจัดการอีเมล์: เรียกคืนอีเมลได้อย่างง่ายดาย  /  บล็อกอีเมลหลอกลวงตามหัวเรื่องและอื่นๆ  /  ลบอีเมลที่ซ้ำกัน  /  การค้นหาขั้นสูง  /  รวมโฟลเดอร์ ...

📁 ไฟล์แนบโปรบันทึกแบทช์  /  การแยกแบทช์  /  การบีบอัดแบบแบตช์  /  บันทึกอัตโนมัติ   /  ถอดอัตโนมัติ  /  บีบอัดอัตโนมัติ ...

🌟 อินเตอร์เฟซเมจิก: 😊อีโมจิที่สวยและเจ๋งยิ่งขึ้น   /  เพิ่มประสิทธิภาพการทำงาน Outlook ของคุณด้วยมุมมองแบบแท็บ  /  ลดขนาด 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