How can I send a .pdf file as blat attachment?

心不动则不痛 提交于 2019-12-21 19:54:29

问题


I try to send a mail with an attachment with blat (with the Shell command of Access VBA).

All works fine while I try to send a .txt file

blat ... -attach c:\mydir\myfile.txt

but if I try to send a .pdf file, with the same command

blat ... -attach c:\mydir\myfile.pdf

I don't receive the mail.

Thanks in advance for any suggestions.


回答1:


The file type by itself shouldn't matter with BLAT, but your email provider might be balking at the size of PDF you're trying to send, or may restrict sending PDF files altogether.

I'd say check with the mail provider and see if they have any such restrictions. Meanwhile you could rename the PDF to text and ask the recipient to rename it back to PDF, but that would be a wonky and hopefully short-term workaround.




回答2:


that should work. do you have spaces in the file name or directories?

c:\test\my file.pdf



回答3:


Take a look at the file name 'length'; I just had a process fail with a text file cuz the NAME was too long.

Failed:

ar_snP_shot.txt

Succeed:

ar_snP.txt

Also use the command line 'debug' option to see whats going on. What does your log say btw?



来源:https://stackoverflow.com/questions/1172200/how-can-i-send-a-pdf-file-as-blat-attachment

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!