Results 1 to 3 of 3

Thread: PHP function mail () not working within my account

  1. #1
    Garcíarobine is offline Senior Member
    Join Date
    Dec 2009
    Posts
    334
    Rep Power
    3

    Default PHP function mail () not working within my account

    I am devloping the application php / mysql business in cpanel. My mail () function does not work and I cannot send mail with this application which is necessary to me. I go into the php.ini and configure the sendmail but still not sending mail. Please do help me out so that I can make the changes to be worked as needed. Thanks in advanced.

  2. #2
    RodríguezBrown is offline Senior Member
    Join Date
    Dec 2009
    Posts
    322
    Rep Power
    3

    Default

    check the code :

    Code:
    <Php
    mail ('votre_email',' Subject ',' message ');
    ?>
    • You should Put this code in a file, for example: testmail.php
    
    • Add this file in your joomla directory.
    
    • Call the URL of your web server with your site and place the name of this file at the end.

  3. #3
    WilsonMartin is offline Senior Member
    Join Date
    Dec 2009
    Posts
    319
    Rep Power
    3

    Default

    Add this code on your main project it will fix your problem.

    Code:
    <Php 
    
      ini_set('Error_reporting', E_ALL); 
      ini_set('Display_errors', 1);   
       
      if (Mail('youremail@domain.com', 'Subject', 'Message')) echo E-mail sent! "; 
      else echo 'Failed ...'; 
      
    ?>

Similar Threads

  1. Can’t function hot key
    By Garcíarobine in forum Networking Jargons
    Replies: 2
    Last Post: 06-12-2010, 11:02 AM
  2. Replies: 0
    Last Post: 10-12-2009, 04:27 PM
  3. Copy & Paste Function Not Working
    By enrich444 in forum Windows XP
    Replies: 1
    Last Post: 04-29-2009, 11:52 AM
  4. Use G mail's free online Tools to solve your E-Mail Headaches
    By qeintine641 in forum General Internet Terms
    Replies: 0
    Last Post: 03-24-2009, 08:14 AM
  5. Web Mail on my Hope ACCOUNT
    By roystin in forum General Internet Terms
    Replies: 0
    Last Post: 02-03-2009, 05:36 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48