Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to add the option to my application to send the current document via email to another person.
And in the email to be a button which when clicked will redirect the user to the document.
Thank you,
Florin
You could use the sendMail simple action. A quick example:
<xp:button value="Send Mail" id="button1">
<xp:eventHandler event="onclick" submit="true" refreshMode="complete">
<xp:this.action>
<xp:sendMail to="aadmin/xpages#xpages" subject="Test mail" from="myaddress#example.org">
<xp:this.bodyHtml><![CDATA[#{javascript:
return "Visit my page: " + context.getUrl();}]]>
</xp:this.bodyHtml>
</xp:sendMail>
</xp:this.action>
</xp:eventHandler>
</xp:button>
In the bodyHtml property, you can create the necessary HTML for a button there.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I am looking for a way, that when I get a Facebook user ID, I can get their email too.
At the moment, I cannot find any way to get their email from their Facebook acc/id.
The only way to get the email of a user is by creating an App and letting the user authorize it with the "email" permission/scope. There is no other way.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Form has some textbox, i need to check for empty fields. How select all textbox on the form?
May be create variable: Dim TBox AS TextBox
If (TextBox1.Text = "") then
Msgbox "TextBox value is empty"
End If
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
There are few services that let you know whether someone opened your email or not and even how many times and when! As a reference I should link to MailTrack and Mixmax
I wonder how to detect when someone opens an email?
[Update]
As #GabrielCliseru said: most Email providers scrub JavaScript from HTML Emails so this one is off the chart
Gmail strips out any content between script tags before displaying
the message. Source
The javascript code sent inside an email is not executed. This is a security limitation.
What you want to do exactly?
You want to send a jquery code by email?
You can do it simple.
Or for more sure, you can put it in a Text file and attach it
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
Is this possible to force browser not to prompt to save the password? I don't want to let my user to save their password in the browser. Any idea from the experts?
You need to turn off autocomplete.
<input type="password" name="password" autocomplete="off" />
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Is there any email technology that allows users to respond by clicking yes or no or other actions?
Must preferably work with Microsoft Outlook and Novell Groupwise.
So basically a manager would get an email for say an approval of an employee's bonus. The manager can then just click Approve or Decline; and a return email will be sent with action that the manager clicked on.
In the email body you can send two links:
Something like this:
example.com/question?verificationCode=...&answer=yes
example.com/question?verificationCode=...&answer=no
There can be two images linked to these links.
This would be the method I am thinking.