Hi, I'm new in this topic, i want to know how to send a email with php.
it is necesary a have a mail server...??
help please!!
it is necesary a have a mail server...??
help please!!
| Code: |
|
$msg = "Here you write your message, \n is instead of <br>! So don´t forget that!"; $from = "From: YOURMAILACCOUNT@DOMAIN.COM"; mail($_POST['email'], 'THE SUBJECT!', $msg, $from); |
| dsaonline wrote: |
| ok, so thanks, i'll try to do this... |