Connect with Facebook Lost Password?


Go Back   CodeCall Programming Forum > Web Development Forum > PHP Forum

PHP Forum Use this forum to discuss all aspects of PHP Development. PHP is a server-side, cross-platform, HTML embedded scripting language that lets you create dynamic web pages.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-25-2008, 08:34 AM
Newbie
 
Join Date: Oct 2008
Posts: 8
Rep Power: 0
intraining is an unknown quantity at this point
Default Auto Mail Responder

hi i would to create something like an auto resonder in my email.

This is how it should work.

1) there should be a link called for example "click here to inform the sender" and then when the reader clicks this link, it will generate a default email message and it will be sent to the sender. is this similar to activation code or something? how do i start?


2) the second thing is that i am using a content management system called Joomla!. can this script be working together with my CMS?


thanks in advance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 10-25-2008, 08:55 AM
John's Avatar   
Co-Administrator
 
Join Date: Jul 2006
Age: 20
Posts: 5,306
Blog Entries: 24
Rep Power: 20
John is just really niceJohn is just really niceJohn is just really niceJohn is just really niceJohn is just really nice
Send a message via AIM to John Send a message via MSN to John
Default Re: Auto Mail Responder

1. You want to use this function: PHP: mail - Manual
2. Yes.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-25-2008, 09:09 AM
Newbie
 
Join Date: Oct 2008
Posts: 8
Rep Power: 0
intraining is an unknown quantity at this point
Default Re: Auto Mail Responder

i will read up on that manual and will get back again. By the Way another question, does php needs any medium for it to run? what i mean is that for example jsp need apache tomcat to work so does php need any?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 10-25-2008, 03:51 PM
John's Avatar   
Co-Administrator
 
Join Date: Jul 2006
Age: 20
Posts: 5,306
Blog Entries: 24
Rep Power: 20
John is just really niceJohn is just really niceJohn is just really niceJohn is just really niceJohn is just really nice
Send a message via AIM to John Send a message via MSN to John
Default Re: Auto Mail Responder

No medium perse, but mail() to work, PHP must have access to the sendmail binary (or whatever your server uses). However, In close to five years, I have yet to run across a server in which the mail function is prohibited.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 10-25-2008, 10:07 PM
Brandon W's Avatar   
Code Warrior
 
Join Date: Sep 2008
Location: Australia
Age: 16
Posts: 2,807
Blog Entries: 5
Rep Power: 27
Brandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to all
Send a message via MSN to Brandon W
Default Re: Auto Mail Responder

As John said. This could be done by simply using the mail() function.

If you don't understand it from PHP.net, just ask here and we will be willing to help you
__________________
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation
Quote:
Originally Posted by WingedPanther View Post
Mrs.Panther refers to me as her "British Bunny".
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 10-26-2008, 07:42 AM
Newbie
 
Join Date: Oct 2008
Posts: 8
Rep Power: 0
intraining is an unknown quantity at this point
Default Re: Auto Mail Responder

thanks for all your help!

here is something i do not understand. What is PEAR Packages? Is this needed for the mail() function to work?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 10-26-2008, 07:44 AM
Brandon W's Avatar   
Code Warrior
 
Join Date: Sep 2008
Location: Australia
Age: 16
Posts: 2,807
Blog Entries: 5
Rep Power: 27
Brandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to all
Send a message via MSN to Brandon W
Default Re: Auto Mail Responder

Quote:
PEAR is a framework and distribution system for reusable PHP components. You can find help using PEAR packages in the online manual and the FAQ.
PEAR :: The PHP Extension and Application Repository

No it is not required for mail(). That is a built-in function to PHP
__________________
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation
Quote:
Originally Posted by WingedPanther View Post
Mrs.Panther refers to me as her "British Bunny".
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 10-26-2008, 08:02 AM
Newbie
 
Join Date: Oct 2008
Posts: 8
Rep Power: 0
intraining is an unknown quantity at this point
Default Re: Auto Mail Responder

i see..i am using joomla! the content management system and is it that it has already been installed together with it already?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 10-26-2008, 08:04 AM
Brandon W's Avatar   
Code Warrior
 
Join Date: Sep 2008
Location: Australia
Age: 16
Posts: 2,807
Blog Entries: 5
Rep Power: 27
Brandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to allBrandon W is a name known to all
Send a message via MSN to Brandon W
Default Re: Auto Mail Responder

I don't know if PEAR is already installed with Joolma! But the mail() function will work straight away.
__________________
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation
Quote:
Originally Posted by WingedPanther View Post
Mrs.Panther refers to me as her "British Bunny".
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 10-26-2008, 08:05 AM
Newbie
 
Join Date: Oct 2008
Posts: 8
Rep Power: 0
intraining is an unknown quantity at this point
Default Re: Auto Mail Responder

the mail function will work right away? do you mean in joomla! or on its own without joomla!?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Php Mail Jaan PHP Forum 4 07-17-2008 06:26 AM
Problem with mail headers ReekenX PHP Forum 4 06-14-2008 08:02 AM
Don't use mail()? bruder PHP Forum 3 01-24-2008 04:58 PM
i give money to anyone who help me out with this!!! Shakmun MarketPlace 9 10-15-2006 04:44 AM
combo box Shakmun Visual Basic Programming 2 10-13-2006 11:10 AM


All times are GMT -5. The time now is 09:24 PM.

Freelance Jobs

XML/XSL: Need code for Book with Chapers using XML
Create an XML file for a book of your creation, and a basic CSS file that will format it to display ...
Earn: $40.00


C++/C: Simple firework cue sequencer
What I require is a rework of a simple cue sequencer. I have a piece of hardware (an Arduino boar...
Earn: $50.00


HTML/XHTML: Menu Rework - ASCIIBin
I'm placing this in the HTML/XHTML section of the Freelance site but you are not limited to HTML. Wh...
Earn: $20.00



CodeCall Goal

Goal #1: 1,000 Blogs
Goal #2: 1,000 Wiki Pages
Goal #3: 300,000 Posts
Goal #4: 20,000 Threads
Done: 30%, 23%, 55%, 75%

Ads