pamela910 2018-10-6 22:00
將不同PDF檔名自動配對共同檔名再插入各自對應的電郵複本,意思是我有數個不同的PDF檔案,每個檔名改成“000001 ABC LTD" , "000002 CDF LTD" , "000003 GHI LTD".............跟著我亦有數個不同檔名的電郵COPY SAVE在1個folder內,每個檔名是“ABC LTD" , "CDF LTD" , "GHI LTD"............當然每個電郵COPY內的email address都不同,Dear不同人,內容是一樣的,請問用甚麼方法可以簡單讓每個PDF能夠配對到相同公司名的電郵COPY內,然後寄出?? 我根本搞不懂到底是outlook內的功能,還是要建立EXCEL表內的功能,還是要編寫程式指令,還是其他工具功能........因為PDF太大量,所以希望找到有效率的方式操作。先謝謝各位指教🙇♀️
assembly.jc 2018-10-8 12:41
Excel, Word 的 mail merge 好似做唔到 attachment (唔肯定),你個 case 可能要自已寫 vba, wmi 或搵 3-party plug-in 工具。
當然,如果識 Programming,C#, Java 的 library 都有 SMTP client ,可以寫個簡單的 program 搞。
C# example: [url=http://www.coding-issues.com/2012/11/sending-email-with-attachments-from-c.html]http://www.coding-issues.com/2012/11/sending-email-with-attachments-from-c.html[/url]
Java: Apache common mail: [url=https://commons.apache.org/proper/commons-email/userguide.html]https://commons.apache.org/proper/commons-email/userguide.html[/url]
[[i] 本帖最後由 assembly.jc 於 2018-10-8 12:44 PM 編輯 [/i]]
ncream 2018-10-8 16:06
我去年幫一個客寫左一個excel vba,將EMAIL寄出+PDF attachment。
[attach]8860170[/attach]
可分別就每封MAIL加上使用者及不同的PDF。
可以用公家mail,gmail。
[[i] 本帖最後由 ncream 於 2018-10-8 04:07 PM 編輯 [/i]]
CLY 2018-10-8 21:57
找個有keyboard macro既editor, 寫個go.bat
Source由dir *.pdf > go.bat 生成.
另外你要有個sendmail.exe
用時e.g. sendmail.exe -fr mail1 -to mail2 -subj "a pdf file" -content cover.txt -att xx.pdf
Programmer 好易有兩件工具, 你就...:smile_40:
鄉貢仁 2018-10-8 23:40
https://stackoverflow.com/questions/44388020/how-to-attach-a-pdf-file-to-a-mime-email-in-python
assembly.jc 2018-10-9 00:12
[quote]原帖由 [i]煙民母親生賤種[/i] 於 2018-10-8 11:40 PM 發表 [url=https://computer.discuss.com.hk/redirect.php?goto=findpost&pid=488624964&ptid=27763425][img]https://computer.discuss.com.hk/images/common/back.gif[/img][/url]
一般我唔贊成用 automation做 send mail。原因好簡單。第一,個 vba 唔知有無bug, 第二,send mail 時(前)你無認真睇過個 email preview 到底是怎樣。好簡單一個例子,你有另一位同事同樣用 net drive s:// 儲存 pdf, 咁岩又用正你個 attachment 個名,但你同事負責的是另一間廠既報價。咁就 send 左機密資料俾一個唔應該知既 ... [/quote]
可能係 d 宣傳資料泥,有些公司會用 mail 做 Promotion。
CLY 2018-10-9 06:10
[quote]原帖由 [i]煙民母親生賤種[/i] 於 2018-10-8 11:40 PM 發表 [url=https://computer.discuss.com.hk/redirect.php?goto=findpost&pid=488624964&ptid=27763425][img]https://computer.discuss.com.hk/images/common/back.gif[/img][/url]
一般我唔贊成用 automation做 send mail。原因好簡單。第一,個 vba 唔知有無bug, 第二,send mail 時(前)你無認真睇過個 email preview 到底是怎樣。好簡單一個例子,你有另一位同事同樣用 net drive s:// 儲存 pdf, 咁岩又用正你個 attachment 個名,但你同事負責的是另一間廠既報價。咁就 send 左機密資料俾一個唔應該知既 ... [/quote]
Bug唔明, 已經共存and dealed with accordingly, 點解今次特別concern呢?
平時叫撞名, 但今次file name有客名, 點解會錯?
pamela910 2018-10-13 22:34
唔該晒咁多位大師指教,但我唔識寫程式亦不太懂,諗住以為响excel建立一個表再按甚麼連結指令 或 outlook有同類功能鍵幫助操作,我都係再搵其他方法提高效率先。謝謝各位師兄!