0

Send a mail

Hi everybody, 

how can I create a button to send an email with outlook, taking the email address from the database?

Thanks

7 replies

null
    • maroon_banana
    • 4 yrs ago
    • Reported - view

    Hi Francesca,

    Here is an idea of a formula. You'll then need to adapt it to your database.

    let myEmail := userEmail();
    sendEmail({
    from: myEmail,
    to: "email@email.com",
    subject: "Subject here",
    text: "Please see attached packing list and shipping labels for" + " " + Customer + ", " + "Order Ref:" + " " + 'Order Ref',
    attachments: files(this)
    })

    • Francesca_Gullotta
    • 4 yrs ago
    • Reported - view

    Thank You, but i need to use Microsoft outlook with an email account other than the ninox one

    • Jorg
    • 4 yrs ago
    • Reported - view

    Hi Francesca,

    If you use the Email field type in Ninox and click on the letter sign right beside the e-mail address displayed in the field Ninox will open an E-Mail to that address in your standard mail App (e.g. Outlook) of your device.

    Best, Jörg

    • Emeric_Leroux
    • 3 yrs ago
    • Reported - view

    Hi Jörg, 

    Could you give me the details of the script when you click on the letter sign ?  I would like to create a special button using various formulas for sending mail. I don't want to use " sendEmail({ " , i want to check the email before on my Outlook. 

    Thanks for your help !

    • Ninox partner
    • RoSoft_Steven.1
    • 3 yrs ago
    • Reported - view

    @ Emeric

    If you use a command like this in a button, I think ,the default mail app will open:

    openURL("mailto:" + Emailadress +  "&subject=" + Subject+ "&body=" + TextfieldBody + "&attachment=" + Imagefield)

    where Emailadress,Subject,TextfieldBody are textfields and an Imagefield for attachment.

    Steven

    • Emeric_Leroux
    • 3 yrs ago
    • Reported - view

    Thanks Steven ! I've also find this script : openURL("mailto:" + TO + "?" + "cc=" + CC + "&" + "bcc=" + BCC + "&subject=" + SUBJECT + "&" + "body=" + BODY)

    • FAIB
    • Mateo_Dominguez_Fuentes
    • 3 yrs ago
    • Reported - view

    How the script needs to be if I have a list of contacts with emails (30-60 contacts, every contact is an entry in a data base table) fields and I want a button to use openURL to send an BCC email to all of them with Outlook?

    Thanks

Content aside

  • 3 yrs agoLast active
  • 7Replies
  • 2308Views