Autor Zpráva
Alastor_Kopal
Profil *
Ahoj lidi
jak bych mohl pomocí jednoho odkazu či tlačítka odeslat email který si nastavím ?
Taps
Profil
Alastor_Kopal
funkce mail viz php manuál
<?php

$Name = "Da Duder"; //senders name
$email = "email@adress.com"; //senders e-mail adress
$recipient = "PersonWhoGetsIt@emailadress.com"; //recipient
$mail_body = "The text for the mail..."; //mail body
$subject = "Subject for reviever"; //subject
$header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields

mail($recipient, $subject, $mail_body, $header); //mail command :)
?>
Alastor_Kopal
Profil *
Myslím že nestačí jenom tady tohleto. Tam mám ještě přidat nějaký odesílací tlačítko ne ?
Pan X
Profil
<input type="submit" name="odeslat" value="Odeslat">

<?php

$Name = "Da Duder"; //senders name
$email = "email@adress.com"; //senders e-mail adress
$recipient = "PersonWhoGetsIt@emailadress.com"; //recipient
$mail_body = "The text for the mail..."; //mail body
$subject = "Subject for reviever"; //subject
$header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields
if(isset($_POST['odeslat'])){
mail($recipient, $subject, $mail_body, $header); //mail command :)
}
?>
Alastor_Kopal
Profil *
Měl by mi přijít každý email ?
Alastor_Kopal
Profil *
Já sem to zkoušel a nic mi nepřišlo !
Alastor_Kopal
Profil *
Nejde to

Vaše odpověď

Mohlo by se hodit


Prosím používejte diakritiku a interpunkci.

Ochrana proti spamu. Napište prosím číslo dvě-sta čtyřicet-sedm:

0