Hi Rolf
First of all thank you for the replying!!
More or less I understand what I have to do with "MSendTo.exe.
In this moment in my setup "Mercury SMTP Server -> Connection control" the parameter "Do not permite SMTP relaying of no local mail" is OFF!!
So my php-script works fine.
My script:
==================================
$message = "Midifile 1: \n"
."CD_Nr: ".$cd_f1."\n"
."Titel: ".$t1."\n"
."Interpret: ".$i1."\n"
."OrdnerNr: ".$o1."\n"
."SongNr: ".$s1."\n "
."-------------------\n"
."Midifile 2: \n"
."CD_Nr: ".$cd_f2."\n"
."Titel: ".$t2."\n"
."Interpret: ".$i2."\n"
."OrdnerNr: ".$o2."\n"
."SongNr: ".$s2."\n "
."-------------------\n"
."Midifile 3: \n"
."CD_Nr: ".$cd_f3."\n"
."Titel: ".$t3."\n"
."Interpret: ".$i3."\n"
."OrdnerNr: ".$o3."\n"
."SongNr: ".$s3."\n "
."-------------------\n";
$email;
$subject = "Midi-Anforderung";
$to = "xxxxx@hotmail.de";
$extra = "From: <$email>\nCc: <$email>\n";
mail($to, $subject, $message, $extra)
or "Send failed";
======================
But I like to turn in "Mercury SMTP Server -> Connection control" the parameter "Only Authenticated SMTP connections may relay mail" of ON!!
To got more security!
Is there a posibility in my script to put a "pasword" and a "user" that Mercury understand it?
<P>Hi Rolf</P>
<P>First of all thank you for the replying!!</P>
<P>More or less I understand what I have to do with "MSendTo.exe.</P>
<P>In this moment&nbsp;in my setup&nbsp;<STRONG> "Mercury SMTP Server -&gt; Connection control"</STRONG> the parameter&nbsp;&nbsp; "<STRONG>Do not permite SMTP relaying of no local mail</STRONG>"&nbsp; is <STRONG>OFF</STRONG>!!</P>
<P>So my php-script works fine.</P>
<P>My script:</P>
<P>==================================&nbsp;</P>
<P>$message = "Midifile 1: \n"
."CD_Nr: ".$cd_f1."\n"
."Titel: ".$t1."\n"
."Interpret:&nbsp; ".$i1."\n"
."OrdnerNr: ".$o1."\n"
."SongNr: ".$s1."\n "
."-------------------\n"
."Midifile 2: \n"
."CD_Nr: ".$cd_f2."\n"
."Titel: ".$t2."\n"
."Interpret:&nbsp; ".$i2."\n"
."OrdnerNr: ".$o2."\n"
."SongNr: ".$s2."\n "
."-------------------\n"
."Midifile 3: \n"
."CD_Nr: ".$cd_f3."\n"
."Titel: ".$t3."\n"
."Interpret:&nbsp; ".$i3."\n"
."OrdnerNr: ".$o3."\n"
."SongNr: ".$s3."\n "
."-------------------\n";</P>
<P>$email;
$subject = "Midi-Anforderung";
$to = "<A href="mailto:xxxxx@hotmail.de" mce_href="mailto:xxxxx@hotmail.de">xxxxx@hotmail.de</A>";
$extra = "From: &lt;$email&gt;\nCc: &lt;$email&gt;\n";</P>
<P>mail($to, $subject, $message, $extra)
&nbsp;or "Send failed";</P>
<P>======================</P>
<P>But I like to turn in&nbsp;&nbsp;"<STRONG>Mercury SMTP Server -&gt; Connection control</STRONG>"&nbsp; &nbsp;the parameter&nbsp;&nbsp; "<STRONG>Only Authenticated SMTP connections may relay mail</STRONG>" of <STRONG>ON</STRONG>!!</P>
<P>To got more security!</P>
<P>Is there a posibility in my script to put a "pasword" and a "user"&nbsp;that Mercury understand it?</P>