How can i send mail in drupal 7?

Comments

hiramanpatil’s picture

You can use drupal_mail() function to send an email from Drupal site. Search for this function on different forums on this site and you will get an answer.

Thanks,

sprite’s picture

Utkarsh Harshit’s picture

Hi,
There are lots of modules as per told above you should go for it,but if you are new to drupal then you can also use the built in php send mail without using drupal functions:

like;
function contact_form_submit($form, &$form_state) {
to=$user->mail;
$subject="";
$headers="mail-id";
$message="your message here";
$sentmail = mail($to,$subject,$message,$headers);
}
It might help you.