0

sending php link in email

http://domain.hu/?view=edit&isevent=0&adid=21405&codemd5=f1ba8bc988a3eae2198875960f567403&cityid=16

there is a way sending this php link in email without encoding or overwriting,
actually only the domain clickable the rest of the link not, after the domain become a normal text

1 reply

null
    • Jorg
    • 5 yrs ago
    • Reported - view

    Hi, 

    There are two ways to do so, if you are using the sendEMail() function in a Ninox Cloud database.

    1. You can use a URL field typ insert your php link and then refer to your field in the html part of your sendEmail() function.

     

    2. You can insert a text part with your php link direktly in the html part of your sendEmail() function.

     

    sendEmail({
    from: myEmail,
    to: text(Client.Email),
    subject: "my php link",
    text: "my php link follows",
    html: "<a href=""http://www.tagesschau.de/"">ARD Tagesschau</a>" + "or: " + URL_Field,
    attachments: file(this, myFileName)
    });

     

    Best, Jörg

Content aside

  • 5 yrs agoLast active
  • 1Replies
  • 6856Views