[quote]Best choice so maiser gets a plain text mail is to have formulars by ...
- enabling the webinterface of mercury or ...
- creating a web contact formular by your own calling a script that sends a plain-text-mail to maiser (had that with option for subscribe and unsubscribe).[/quote]
Forgot one, because it doesn't work with Pegasus - nice simple html form without scripting (if you want to use it, ensure to save the HTML-file with encoding UTF-8 !!!):
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<h2>Subscribe to mailinglist:</h2>
<form action="mailto:maiser@domain.de?subject=subscribe&body=subscribe%20testlist%0D%0Aexit%0D%0A" method="post" enctype="text/plain">
<input type="submit" value="Subscribe via mailclient">
</form>
</body>
</html>
This is functional - except with Pegasus. The only parameter Pegasus accepts with mailto is "subject" (no cc, bcc, body and so on) and in addition Pegasus ignores the enctype. [:(]
The problem with all methods based on mailto is, that they won't be functional if there is no mailclient on backend. On smartphones most people I know use webmailers.
Bye Olaf
[quote]Best choice so maiser gets a plain text mail is to have formulars by ...
<ul>
<li>enabling the webinterface of mercury or ...</li>
<li>creating a web contact formular by your own calling a script that sends a plain-text-mail to maiser (had that with option for subscribe and unsubscribe).[/quote]</li>
</ul>
<div>Forgot one, because it doesn't work with Pegasus - nice simple html form without scripting (if you want to use it, ensure to<b> save the HTML-file with encoding UTF-8 !!!</b>):</div><div>
<blockquote style="font-family:monospace">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&nbsp;&nbsp;&nbsp; &lt;head&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;meta http-equiv="content-type" content="text/html; charset=UTF-8"&gt;
&nbsp;&nbsp;&nbsp; &lt;/head&gt;
&nbsp;&nbsp;&nbsp; &lt;body&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;h2&gt;Subscribe to mailinglist:&lt;/h2&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;form action="mailto:maiser@domain.de?subject=subscribe&amp;amp;body=subscribe%20testlist%0D%0Aexit%0D%0A" method="post" enctype="text/plain"&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;input type="submit" value="Subscribe via mailclient"&gt;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;/form&gt;
&nbsp;&nbsp;&nbsp; &lt;/body&gt;
&lt;/html&gt;
</blockquote></div><div>This is functional - except with Pegasus. The only parameter Pegasus accepts with mailto is "subject" (no cc, bcc, body and so on) and in addition Pegasus ignores the enctype. [:(]</div><div>&nbsp;</div><div>The problem with all methods based on mailto is, that they won't be functional if there is no mailclient on backend. On smartphones most people I know use webmailers.
</div><div>&nbsp;</div><div>Bye &nbsp;&nbsp; Olaf</div><div>&nbsp;</div>