View Full Version : A PHP mailing Application
I'm wanting to make or purchase a custom Clan Application..
Can anyone point me to something easy to understand to learn this ?
Or I will gladly pay for someone to make it for me as well..
Any help is appreciated..
While I'm here and instead of making another post. Do you guys have a advertising banner such as mine
http://www.xst-hq.net/xst-mini-banner.png
I'm wanting to show who my host is and perhaps bring in some customers. I do this for my gaming server and in a month Ive gotten 8 sales for them.. Just trying to show my appreciation and my very good host "ULMB" ...
Thanks for everything guys/gals..
P
UnlimitedMB
08-01-2007, 12:06 AM
Why was this posted in HTML?
PHP threads belong in scripting.
Thread moved.
As to the subject title, please be aware that mass mailing php scripts are not allowed and will not even work.
lol ok
Forgive me for not being tech savy..
They wont work ? Uhhh yes they do sorry to disagree buts it's a fact...
I fail to see how it would be mass mailing. No more than a contact me page and which YOU provide. But ok
Thanks for your reply
You have some of the weirdest restrictions. And no I'm not arguing just voicing myself..
Tyler
08-01-2007, 03:34 AM
They wont work ? Uhhh yes they do sorry to disagree buts it's a fact...
Uhhh but you are wrong. We block all mass mailing scripts. It's prolly not a good thing to disagree with the one who runs the company.
If your just doing a contact page then its not a problem. But a mass mailing application is not allowed.
Again not disagreeing, just talking and just because we have different opinions doesnt mean that im disagreeing or trying to start anything for that matter..
Again I'm new to alot of stuff so I fail to see how a form that you check boxes on and then submit them is a mass mailing like some hack spam mailer.
When someone has a question or needs to better understand things are they not supposed to make a post ?
And again yes the mailing scripts DO work do you want me to PM you a link I coded for this very thing ? I'd check your blocking system..
I just wanted a more professional recruitment form not to try to fight..
Tyler
08-01-2007, 05:32 AM
We never said that mailing scripts don't work he simply said MASS mailing scripts don't work. Your title to your post sounds like a mass mailing script. What you are now describing is a feedback application. If you go into your control panel and click "Mail" then Contact Me Links, we provide a contact me form for you.
However, if you did code a mass mail script and we catch you, you will be banned.
Ok understand more now..
I use the contact me you suggest for my personal contact admin mail...
I'm wanting one that look and works the same way as that one just more fields for squad requiting..
Sorry for the confusion and sorry if I seemed aggressive.. Not my intention. Not the best for words..
Im just wanting a page like your contact email section but I want it to contain stuff like
Game wanting to apply for
Weapon use
time played etc..
Again sorry if I seemed harsh..
But uhh can you answer my other questions ? The mini image for advertisements so to say ?
And why .rar is not allowed ? I understand the htaccess files but RArs are most used over the .zip's and are more compressible and have less error on unzipping..
Again I thank you for you replies
Tyler
08-01-2007, 05:49 AM
You could always just tell your users to put something into the boxes. If you don't use our contact script make sure yours is secure.
RARs are used to split up large files (like movies) into hundreds of .rar files to bypass our file size limits.
We do not have a banner yet, however you can feel free to make one to use, we always appreciate it.
Ok thanks you, another reason I asked for built form by a pro for the security..
For the rars I have winrar and when I add stuff to archives theres always rar and I end up updating them to remember that its rar lol..
But I understand what you mean.. Thanks for the replies..
When you get a mini banner or whatever let me know plz.. I havent gotten the time latly to much of anything..
UnlimitedMB
08-01-2007, 02:53 PM
You can certainly make a mailing script like a form mail, there is no problem with that.
From the subject line "mailing application" usually means you want to send hundreds/thousands of emails at one time.
ohhh ok thanks for explaining that and I apologize for the confusion..
So can anyone make this for me "Paid for of course"
Or point me in a direction to a user friendly tutorial ?
All tutorials I find seems the tutorial makers are in a competition with each other on who can confuse and be the most complex..
Again I'm sorry Tyler, Unlimited..
backdoor
08-02-2007, 07:55 AM
http://www.php.net maybe?
tscott
09-23-2007, 06:29 PM
Here I made you one :)
<?php
$email = $_POST['email'];
$to = $_POST['to'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$ip = $_SERVER['REMOTE_ADDR'];
$terms = $_POST['terms'];
$defaultemail = 'mail@mysite.com';
if($email == '')
{
$email = $defaultemail;
}
$reportingemail = 'myeamil@mydomain.com';
if(!isset($terms))
{
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Mailer</TITLE>
<META http-equiv=Content-Type content="text/html; charset=UTF-8">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD>
<BODY bgColor=black>
<P><FONT style="BACKGROUND-COLOR: #000000" color=#ffffff>PHP Mailer:<BR>Please
note, your IP will be recorded and logged with this email. <FORM action="?go=true" method="post"><BR>Your Email:
<BR><INPUT maxLength=300 size=50 value="Your Email" name=email><BR>To:<BR><INPUT
style="WIDTH: 335px; HEIGHT: 22px" maxLength=300 size=50 value="To "
name=to><BR>Suject:<BR><INPUT maxLength=1000 size=50 value=Subject
name=subject>]<BR>Message:<BR><TEXTAREA style="WIDTH: 330px; HEIGHT: 147px" name=message rows=7 cols=35>My Message
</TEXTAREA><BR><BR>Please Read the Terms: <BR>You are Responsible for any email
you send, It will be logged. ANY abuse will result in ban in the admins sole
discretion. <BR><BR>I accept the terms: <INPUT type=checkbox value=accept
name=terms><BR><BR><INPUT type=submit value="Send Email"><INPUT type=reset value="Reset Fields"><BR></FONT></form>
<SCRIPT language=JavaScript id="disable statusbar">
function dsb(){window.status="";setTimeout("dsb()",5)}dsb();</SCRIPT>
</P></BODY></HTML>';
exit;
}
$editedmessage = 'This Message was Sent to you by: ' . $ip . ' : ' . $message . ' : If you feel this is spam please report it to : ' . $reportingemail;
$send = mail($to , $subject , $editedmessage , "From:" . $email);
if(!$send)
{
echo "Mail Was Not Sent";
exit;
}
echo "Mail Successfuly Sent to : " . $to;
//logging//
$con = @fopen('logs.htm' , 'a');
$writemessage = $ip . ': Sent Email To : ' . $to . ' : From the Email : ' . $email;
@fwrite($con , $writemessage);
?>
It's simple but works really well :).
Sorry tscott, I never got an email saying anyone replied.. Thank you very much.
cr0wonline
10-06-2007, 01:18 AM
As for a minibanner to use, i have a link to one in my sig. :)
As for a minibanner to use, i have a link to one in my sig. :)
uhhhhhhhh, what does a mini banner have to do with anything that I've posted ?
cr0wonline
10-14-2007, 08:04 PM
uhhhhhhhh, what does a mini banner have to do with anything that I've posted ?
You are the same "xst" who posted the below, are you not? =/ And because it was you, it appears to have to do with 3 posts of yours...
While I'm here and instead of making another post. Do you guys have a advertising banner such as mine
But uhh can you answer my other questions ? The mini image for advertisements so to say ?
When you get a mini banner or whatever let me know plz.. I havent gotten the time latly to much of anything..
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.