Jump to content

Recommended Posts

hi i want to my feed back form to send all information to be sent on my mail. but it is not working.

i tried using many scripts but no use, i have a simple script for testing but that is not working too.

could someone plz tell me how to do it.

 

the script which i used for testing is:

 

<?php
$to = "masood_w1@yahoo.co.in";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body)) {
  echo("<p>Message successfully sent!</p>");
} else {
  echo("<p>Message delivery failed...</p>");
}
?>

Link to comment
https://forums.phpfreaks.com/topic/126606-problem-in-mail-function/
Share on other sites

hi, i have mail server, and i have also set headers have a look at this code:

 

<?php 

$Name = "Da Duder"; //senders name 
$email = "masoodw1@gmail.com"; //senders e-mail adress 
$recipient = "websoft_w1@yahoo.com"; //recipient 
$mail_body = "The text for the mail..."; //mail body 
$subject = "Subject for reviever"; //subject 
$header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields 
ini_set('websoft_w1@yahoo.com', 'masoodw1@gmail.com');
mail($recipient, $subject, $mail_body, $header); //mail command 
?>

it is still not working.. please help me. pleeeeeeeeese.

What do you mean by "it's not working"? DO you get errors? Is the mail not received? Have you checked you spam folder on YAHOO? Some ISP's/Hosts will not let you send an email message unless the "from" address is actually from the same domain.

 

Ken

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.