ugrás a tartalomhoz

Furcsa pont megjelenese mailben

Anonymous · 2006. Szep. 14. (Cs), 14.44
A kovetkezo PHP koddal kuldok egy e-mailt magamnak. Az adatok egy HTML form-bol vannak kiszedve:

  	$messagebody = "Username: " . $_POST['name'] . "\n" .
  	               "Organisation: " . $_POST['organisation'] . "\n" .
  	               "E-mail: " . $_POST['email'] . "\n" .
  	               "Phone: " . $_POST['phone'] . "\n" .
  	               "Address: " . $_POST['address'] . "\n\n" .  
  	               "I would like more information about the BPO: " . $_POST['bpo'] . "\n" .
  	               "I would like to join the BPO: " . $_POST['joinbpo'] . "\n" .
  	               "I would like to be included on the BPO mailing list: " . $_POST['question1'] . "\n" .
  	               "I would like to sponsor the BPO: " . $_POST['sponsor'] . "\n" .
  	               "I would like someone to contact me about the BPO: " . $_POST['contact'] . "\n" .
  	               "Other: " . $_POST['other'] . "\n" .
  	               "Any other comments: " . $_POST['other_comment'];

mail ("cim##kukac##email.com", "hello", $messagebody);
Megerkezik minden adat jol, de Mozilla Thunderbird kliens egy pontot helyez az uzenet vegere. Nem ertem miert

valami hasonlo erkezik meg :

Username: nev
Organisation: blah blah
E-mail: cim##kukac##email.com
Phone: tel szam
Address: Cim

I would like more information about the BPO: yes
I would like to join the BPO: yes
I would like to be included on the BPO mailing list: email
I would like to sponsor the BPO: yes
I would like someone to contact me about the BPO: yes
Other: No comment
Any other comments: No


.          <- ez a pont


Lehet ezt valahogy orvosolni.

Koszonom !
 
1

más klienssel?

zsepi · 2006. Szep. 14. (Cs), 15.48
más levelezőklienssel (webes, egyéb) is produkálja ugyanezt a problémát? Ha igen, a $_POST['other_comment'] valóban csak annyit tartalmaz, hogy "No", vagy esetleg ott jön be a trailing karakter?