0

Open email client with pre-populated email, subject and attachment

I'm trying to combine the Email function and openURL

 

I use the following for invoices, which is 100% fine

let myEmail := userEmail();
let myPdf := printAndSaveRecord(this, "Quotes");
let myName := "Cardia Bioproducts Quote" + ".pdf";
importFile(this, myPdf, myName);
sendEmail({
from: myEmail,
to: Customer.'Account Email',
subject: "Cardia Bioproducts Invoice",
text: "Please find attached the invoice for your order 'Purchase Order #' on Date",
attachments: file(this, myName)
});

 

But I want to achieve the above with the same effects that the below achieves. Not sure how to add the attachment though.

openURL("mailto:" + Contact.Email + "?" + "&subject=" + 'Quote Number')

4 replies

null
    • Mconneen
    • 4 yrs ago
    • Reported - view

    You cannot add an attachment to a URL..  

    • Agus
    • 3 yrs ago
    • Reported - view

    bump. This is really helpful, sendemail() is usefull but if its possible on my mail app (including added attachment) would be extemely helpful

    • Admin.7
    • 2 yrs ago
    • Reported - view

    I have the same question, mainly bcs all my email send with the fucntion sendEmail are going directly to the spam inbox. Is there any reason for that ?

    • Brendon.1
    • 2 yrs ago
    • Reported - view

    The main reason for that would be because the Ninox mail server spoofs as which ever email address you put in the From: field. I would think that a lot of spam would use this technique to make you think that it is from a different/legitimate source. So yes, it could be hit a miss. I personally haven't had any issues with this so far, but people’s Gmail accounts do warn you that the email could be spoofed.

Content aside

  • 2 yrs agoLast active
  • 4Replies
  • 1789Views