One rather crude method is to achieve this client side, which is very basic html coding. A word of caution if this is used on an public and open access web site, spam bots will find the mail address used.
Open a text box on the page, go to edit and then view in html.
Add this:
<A href="mailto:the.address@domain.com?subject=the test name&body=The test name completed">Post your completion</A>
It adds an underlined link called 'Post your completion' which will open the default mail client, usually but not always depending on OS, mail client etc.
Mail is addressed to 'the.address@domain com'
The subject line will read 'test name'
The body 'The test name completed'.
This is not elegant or particularly smart. Better is to use a server side service like sendmail but this requires much more info.
Next thought will probably be javascript based, obfuscate the address and pull results to add to the content.
One rather crude method is to achieve this client side, which is very basic html coding. A word of caution if this is used on an public and open access web site, spam bots will find the mail address used.
Open a text box on the page, go to edit and then view in html.
Add this:
<A href="mailto:the.address@domain.com?subject=the test name&body=The test name completed">Post your completion</A>
It adds an underlined link called 'Post your completion' which will open the default mail client, usually but not always depending on OS, mail client etc.
Mail is addressed to 'the.address@domain com'
The subject line will read 'test name'
The body 'The test name completed'.
This is not elegant or particularly smart. Better is to use a server side service like sendmail but this requires much more info.
Next thought will probably be javascript based, obfuscate the address and pull results to add to the content.