Search results for query: attach pdf to email

  1. A

    Unable to send Salary Slip via Email

    While clicking on button "Email Salary Slip" as attached in *.mdb file we are getting the following error (Snapshot attached) Description: The System cannot find the file specified.; Error Number:-2147025894; Source :CDO.Message.1 Unable to send Salary Slip Email in PDF format with password...
  2. M

    VBA output report to PDF and email

    Good morning all, I'm battling with some code that takes a report and sends it out to a client, with a filename built from the [Customer ID] and
  3. S

    Emailing Attachment content within the report

    Hello, i hope i get a solution for this one, am a beginner in access but i learn fast i have a report linked to a table , one of the fields is Attachment field, which includes multiple attachments with different formats (word doc, img, pdf) the problem is when emailing the report it doesnt show...
  4. M

    VBA output report to PDF and email

    Fairly confident that is the subject section of the code.. Adding in the additional ,"" is highlighted "subject" then causes the button to do nothing atall. The button works as expected, creates an email with the PDF attachment, it's just the PDF attachment name is collecting FUR001-13545 from...
  5. MattBaldry

    Solved Export to PDF and Merge Another PDF

    Hi All, Is there a way of exporting to PDF and then merging another PDF file to my report? I have a code that exports my report to PDF then attaches it to an email. What I would like to do now is export it, merge it, then email the combined file. Is this possible? ~Matt
  6. O

    VBA output report to PDF and email

    You have a weird approach. You don' t actually need to open report. Try it that way: Grab the data from the form to construct file name (quoteref etc.). Use DoCmd.OutputTo acOutputReport method to save the pdf file. Open email, fill the fields and attach the pdf file.
  7. mike60smart

    PDF Attachments

    Hi Everyone Can someone tell me where I an going wrong with the following Code to add an attachment to an email. The Code creates a PDF file in the Folder as required It displays the Report But it does not Display the Email in Outlook ? The code is as follows:- Private Sub cmdPrint_Click()...
  8. Gasman

    VBA output report to PDF and email

    If you do not open the report, how do you filter it for the correct record? This way you do not need to create a pdf file and save it.
  9. P

    VBA output report to PDF and email

    That is because you are not saving the report yourself. You are forcing Access to save it and Access is using the only name it knows which is the query name. 1. No need to open the report first. Use a query with criteria instead. We'll tell you how if you can't figure it out. Opening and...
  10. mike60smart

    Error 2501

    Hi Everyone I am trying to attach a PDF file as an attachment to an EMail but when I run the Code I get the following Error. The Report opens just fine but no EMail is generated. Any help appreciated. Private Sub cmdPreview_Click() 10 If Me.Dirty Then Me.Dirty = False 20 On...
  11. M

    Multiple attachments and a report in the same email

    Hi All, I have a field in a table that holds file paths to PDFs of invoices, I am trying to put some code behind a button that attaches the invoices that have not yet been sent to the office, also there is a report that I would like attached to the same email. I have the code below but it is...
  12. M

    VBA output report to PDF and email

    hmm, this is highly annoying! Current "send email button" code is: [code] Private Sub Command22_Click() On Error Resume Next ' Suppress error messages temporarily ' Open the report in preview mode with a filter based on
  13. Snowflake68

    Outlook reply to an existing email

    Is there a way of replying to a specific email from an Access application? I have a module that will generate an email with a specific subject line and body with variable references as well as attach a pdf however is there a way of replying to an original email that is already in your outlook...
  14. M

    VBA output report to PDF and email

    I cannot get this to output with the filename how I want it, I've even tried moving to saving then attaching like this? [code] Private Sub Command22_Click() On Error Resume Next ' Suppress error messages temporarily ' Open the report in preview mode with a filter based on
  15. C

    Splitting pdf files

    yes. Assuming you receive the email with pdf attachment, move the pdf to a 'to be processed' folder (this can be automated). The simply run a routine to import to accounts. It takes about a second for each document. You do need to set things up - I use a little known ,exe to convert the pdf to...
  16. J

    Splitting pdf files

    Seems like the way to go. Thanks. I will try it out. Much better than scanning paper. Nowadays the majority of bills is sent electronically. I still use 32 bit, so no problem.
  17. M

    VBA output report to PDF and email

    Your diamond. FUR001-13545 was in the report caption The query that builds the report is filtering on: [Forms]![frmQuote]!
  18. MajP

    Display report on the form

    I do not think there is any need to build your own toolbar. 1. Choose a report from some kind of report chooser. Lets say a combobox 2. This will run the code to save in the local folder 3. Set the address of the web browser to the saved file 4. Control that in the browser with adobe features...
  19. M

    Multiple attachments and a report in the same email

    No I don't have Option Explicit declared in the module. afiles is meant to be the URL to where the PDF is stored which needs to be attached to the email, but there are several PDFs that need to be attached, hence the loop....I would suggest there is a high likelyhood that I'm not using it...
Top Bottom