mail() function help needed

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
kaylamiller2
Forum Newbie
Posts: 3
Joined: Fri Dec 26, 2008 11:58 am

mail() function help needed

Post by kaylamiller2 »

how would i restrict the number for out going mail to a certain number an hour per ip
also how do i call it through the url and but spaces in the message
User avatar
jaoudestudios
DevNet Resident
Posts: 1483
Joined: Wed Jun 18, 2008 8:32 am
Location: Surrey

Re: mail() function help needed

Post by jaoudestudios »

record the ip and datestamp (includes time) in the database and check this before sending.
User avatar
Ambush Commander
DevNet Master
Posts: 3698
Joined: Mon Oct 25, 2004 9:29 pm
Location: New Jersey, US

Re: mail() function help needed

Post by Ambush Commander »

%20 represents a space in a URL. Or use urlencode()

However, may I ask why you are sending emails via GET requests?
Post Reply