"Hard work surpasses genius"
by: Mark-
Web 2.0 platform and Programming Language
We are promoting Web 2.0 platform in our template design, xHTML in our scripting and PHP programming language in our server side programming. So try our services and be satisfied with the outcome.
-
HTML/xHTML Standard
This site passed and uses the W3C XHTML 1.0 Transitional standard, CSS level 2.1 driven, Javascript and with a latest trend of Table-less xHTML scripting by not using <table> tag in making our script.
-
Website History
This website was founded last October 18, 2007, fully bought the domain February 2008 and has been continually updating. We are located at heart of The City of Golden Friendship Cagayan de Oro the City.
PHP Class for sending Email and preventing Email Spam
I have created a simple PHP class that would send email and with the proper emai header format it would not be a spam email.
The following are condition to make email message not to appear as Spam emails:
1. Neader To, From, Reply-To, Cc and Bcc emails must have an existing/running domain. for example email address info@iwebprovider.com, iwebprovider.com domain must still be exist/running domain or website.
2. Inserting standard headers like MIME-Version, Content-type, To and From.
3. Subject must not have always the same content. Sample if you are sending 100 email notification they must have atleast unique subject. You could create unique subject by inserting the name of the person/company you are suppose to send your email, sample subject “Notification message to John from iWeb”, “Notification message to Kate from iWeb” and etc. Sample repeated subject is “Notification message from iWeb”.
interface intEmail {
public function send();
public function is_email( $email );
public function send_mail( $send_to, $subject, $message, $headers );
public function extract_send_to_email( $send_to_email );
}
class clsEmail implements intEmail {
public $send = FALSE;
public $type = NULL;
public $charset = 'utf-8'; //iso-8859-1
public $send_to = NULL;
public $subject = NULL;
public $headers = NULL;
public $message = NULL;
public $send_to_many = array();
public $email_from = NULL;
public $name_from = NULL;
public $reply_to = NULL;
public $cc = NULL;
public $bcc = NULL;
public function send(){
$send_to = $this->send_to;
$subject = $this->subject;
$message = $this->message;
if($send_to != '' && $subject != '' && $message != '' && $this->name_from != '' && $this->email_from != ''){
if($this->type == 'html'){
$send_to_email = $this->extract_send_to_email( $this->send_to );
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0'."\r\n";
$headers .= 'Content-type: text/html; charset='.$this->charset.''."\r\n";
// Additional h eaders
$headers .= 'To: '.$send_to_email.''."\r\n";
$headers .= 'From: '.$this->name_from.' <'.$this->email_from.'>'."\r\n";
if($this->reply_to != ''){
$headers .= 'Reply-To: '.$this->reply_to.''."\r\n";
}
if($this->cc != ''){
$headers .= 'Cc: '.$this->cc.''."\r\n";
}
if($this->bcc != ''){
$headers .= 'Bcc: '.$this->bcc.''."\r\n";
}
} else {
$headers .= 'From: '.$this->name_from.' <'.$this->email_from.'>'."\r\n";
if($this->reply_to != ''){
$headers .= 'Reply-To: '.$this->reply_to.''."\r\n";
}
$headers .= 'X-Mailer: PHP/'.phpversion();
}
if($send_to_email != FALSE){
$this->send = $this->send_mail( $send_to, $subject, $message, $headers );
return $this->send;
} else {
//Error if no email to or wrong email to format
return FALSE;
}
} else {
//Error variable send_to, subject, message, name_from and email_from are blank.
return FALSE;
}
}
public function extract_send_to_email( $send_to_email ){
$email_array = explode(',',str_replace(' ','',$send_to_email));
$check_email = array();
$email_name = '';
$email_string = '';
if(count($email_array) > 0){
$cnt = 1;
foreach($email_array as $email_value){
if($this->is_email( $email_value ) == TRUE){
$comma = $cnt > 1 ? ',' : '';
$email_name_array = explode('@',$email_value);
$email_name = $email_name_array[0];
$email_string .= $comma.$email_name.' <'.$email_value.'>';
$check_email[] = 1;
$cnt++;
} else {
$check_email[] = 0;
}
}
if(in_array(0, $check_email) == FALSE){
return $email_string;
} else {
return FALSE;
}
} else {
return FALSE;
}
}
public function send_mail( $send_to, $subject, $message, $headers ){
$mail = @mail( trim($send_to), strip_tags($subject), stripslashes($message), $headers );
return $mail;
}
//Validate if proper email format
public function is_email( $email ){
if(preg_match("/^[^@]*@[^@]*\.[^@]*$/", $email)){
return $email;
} else {
return FALSE;
}
}
} ?>
//Application of this class
$send_to = 'to_email_1@domain.com,to_email_2@domain.com'
$message = '
Hello,
This is a sample email
Thanks,
';
$objEmail = new clsEmail();
$objEmail->Email->type = 'html';
$objEmail->Email->send_to = $send_to;
$objEmail->Email->subject = 'Sample email';
$objEmail->Email->name_from = 'nameofsender';
$objEmail->Email->email_from = 'emailfrom@domain.com';
$objEmail->Email->reply_to = 'emailfrom@domain.com';
$objEmail->Email->cc = 'email_cc@domain.com';
$objEmail->Email->bcc = 'email_bcc@domain.com';
$objEmail->Email->message = $message;
$objEmail->Email->send();
97 Responses to PHP Class for sending Email and preventing Email Spam
Leave a Reply
Services we offer
My Blogs
-
Configuring CodeIgniter for website with HTTPS protocol view more...
Posted: Jan 05, 12 at 11:27 am -
Keyword “Cagayan de Oro PHP Programmer” iWebProvider.com is Number 1 at Google Search view more...
Posted: Feb 15, 11 at 05:54 pm -
PHP get root URL and root Directory path view more...
Posted: Feb 15, 11 at 02:47 am -
PHP Object Oriented Programming (OOP) using Model View Controller (MVC) approach view more...
Posted: Feb 12, 11 at 01:56 pm -
Launching of the new 2011 iWebProvider.com Template Design view more...
Posted: Feb 03, 11 at 08:17 pm
Most Popular Blogs
-
PHP get root URL and root Directory path view more...
Posted: Feb 15, 11 at 02:47 am -
Search Engine Friendly URL to convert .php and replace with .html file extension using .htaccess view more...
Posted: Jan 19, 11 at 09:44 am -
PHP Class for sending Email and preventing Email Spam view more...
Posted: Jan 19, 11 at 09:41 am -
PHP Function to Limit String output or display view more...
Posted: Jan 19, 11 at 09:39 am
Wise Words
"It’s not about how many you have learned but how much you have utilized and mastered what you have learned."
by: Mark"The function of good software is to make the complex appear to be simple."
by: Grady BoochLatest Comments
abseiled... The best post I ever found that captured all the arguments around heading syntax was he...
by: Serverablution... Every convenience brings its own inconveniences along with it....
by: VPSabscises... What about "a collection of oldies..but goldies" ?...
by: ServerKeep in Touch
If you would like to find out more about us, just email us at inquiry[AT]iwebprovider.com

I enjoy all…
i’m contemplating about commencing my quite own blog….
2011…
I think this is among the most significant information for me. And i am glad reading your article. But want to remark on few general things, The web site style is great, the articles is really excellent : D. Good job, cheers…
2011…
I do not even know how I ended up here, but I thought this post was good. I don’t know who you are but definitely you’re going to a famous blogger if you aren’t already
Cheers!…
2011…
Valuable information. Lucky me I found your site by accident, and I am shocked why this accident did not happened earlier! I bookmarked it….
2011…
hey there and thank you for your info – I have certainly picked up something new from right here. I did however expertise several technical points using this website, since I experienced to reload the website a lot of times previous to I could get it t…
2011…
My brother suggested I might like this website. He was entirely right. This post truly made my day. You can not imagine simply how much time I had spent for this information! Thanks!…
2011…
Great line up. We will be linking to this great article on our site. Keep up the good writing….
… [Trackback]…
[...] Read More: iwebprovider.com/php-class-for-sending-email-and-preventing-email-spam/ [...]…
Medical Assistant Resume Examples…
Wonderful blog! I found it while searching on Yahoo News. Do you have any tips on how to get listed in Yahoo News? I’ve been trying for a while but I never seem to get there! Many thanks…
2011…
Valuable info. Lucky me I found your website by accident, and I’m shocked why this accident didn’t happened earlier! I bookmarked it….
2011…
Having read this I thought it was very informative. I appreciate you taking the time and effort to put this article together. I once again find myself spending way to much time both reading and commenting. But so what, it was still worth it!…
DSLR REVIEWS…
This is my Excerpt…
2011…
It’s actually a great and helpful piece of info. I’m glad that you shared this useful information with us. Please keep us up to date like this. Thanks for sharing….
2011…
Greetings! Very helpful advice on this article! It is the little changes that make the biggest changes. Thanks a lot for sharing!”…
2011…
magnificent points altogether, you just gained a brand new reader. What would you suggest about your post that you made some days ago? Any positive?…
another title…
I saw this really great post today….
Black Mold Removal…
I’m really enjoying the design and layout of your blog. It’s a very easy on the eyes which makes it much more enjoyable for me to come here and visit more often. Did you hire out a designer to create your theme? Great work!…
2011…
Great post. I am facing a couple of these problems….
2011…
Excellent goods from you, man. I have understand your stuff previous to and you are just too fantastic. I actually like what you’ve acquired here, certainly like what you are saying and the way in which you say it. You make it enjoyable and you still …
2011…
I would like to thnkx for the efforts you’ve put in writing this web site. I’m hoping the same high-grade website post from you in the upcoming also. In fact your creative writing skills has encouraged me to get my own site now. Actually the blogging…
2011…
Hi there! This post couldn’t be written any better! Reading through this post reminds me of my previous room mate! He always kept talking about this. I will forward this article to him. Pretty sure he will have a good read. Thank you for sharing!…
2011…
I got good info from your blog…
Bielizna…
Hey there, I think your blog might be having browser compatibility issues. When I look at your blog site in Safari, it looks fine but when opening in Internet Explorer, it has some overlapping. I just wanted to give you a quick heads up! Other then tha…
%BLOGTITLE%…
I read this wonderful post here at %BLOGTITLE%…
CNA Training Tips…
Wonderful blog! I found it while browsing on Yahoo News. Do you have any suggestions on how to get listed in Yahoo News? I’ve been trying for a while but I never seem to get there! Cheers…
2011…
Those are yours alright! . We at least need to get these people stealing images to start blogging! They probably just did a image search and grabbed them. They look good though!…
2011…
I’m not sure where you are getting your info, but great topic. I needs to spend some time learning more or understanding more. Thanks for fantastic info I was looking for this information for my mission….
Pozycjonowanie Top…
This design is wicked! You most certainly know how to keep a reader entertained. Between your wit and your videos, I was almost moved to start my own blog (well, almost…HaHa!) Fantastic job. I really enjoyed what you had to say, and more than that, h…
Nice post. Thx!…
[...]Way cool! Some very valid points! I appreciate you penning this article and also the rest of the site is extremely good.[...]…
Find Out More…
[...]Great web site you’ve got here.. It’s difficult to find high-quality writing like yours nowadays. I really appreciate individuals like you! Take care!![...]…
Nice post…
[...]Friendship with oneself is all important, because without it one cannot be friends with anyone else in the world [...]…
Big Events…
[...]Just when you thought men monopolized the cheating game, women came into the scene.[...]…
2011…
I got good info from your blog…
2011…
I do not even know how I ended up here, but I thought this post was great. I do not know who you are but certainly you are going to a famous blogger if you aren’t already
Cheers!…
Conveyancing Solicitors…
[...]below you’ll find the link to some sites that we think you should visit[...]…
2011…
Way cool, some valid points! I appreciate you making this article available, the rest of the site is also high quality. Have a fun….
2011…
I think other web-site proprietors should take this site as an model, very clean and wonderful user genial style and design, as well as the content. You’re an expert in this topic!…
2011…
I will immediately grab your rss as I can’t find your email subscription link or newsletter service. Do you’ve any? Please let me know in order that I could subscribe. Thanks….
2011…
Everything is very open and very clear explanation of issues. was truly information. Your website is very useful. Thanks for sharing….
2011…
I haven’t checked in here for some time as I thought it was getting boring, but the last several posts are good quality so I guess I’ll add you back to my everyday bloglist. You deserve it my friend
…
2011…
I have been absent for a while, but now I remember why I used to love this web site. Thanks, I will try and check back more frequently. How frequently you update your web site?…
2011…
naturally like your web-site but you have to check the spelling on quite a few of your posts. Several of them are rife with spelling issues and I find it very bothersome to tell the truth nevertheless I’ll surely come back again….
2011…
Thanks a bunch for sharing this with all of us you actually know what you’re talking about! Bookmarked. Please also visit my site =). We could have a link exchange agreement between us!…
2011…
Good site! I really love how it is simple on my eyes and the data are well written. I am wondering how I might be notified whenever a new post has been made. I have subscribed to your RSS feed which must do the trick! Have a great day!…
Related……
[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]……
Great article….
I was just searching for something else on Bing….
Conveyancing Solicitors…
[...]below you’ll find the link to some sites that we think you should visit[...]…
2011…
Great post. I am facing a couple of these problems….
2011…
Wow, fantastic blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is wonderful, as well as the content!…
2011…
I love it when people come together and share opinions, great blog, keep it up….
2011…
Good website! I really love how it is easy on my eyes and the data are well written. I’m wondering how I might be notified whenever a new post has been made. I have subscribed to your RSS feed which must do the trick! Have a great day!…
Great article…
very good publish, i certainly love this web site, carry on it…
Expekt…
Wonderful blog! I found it while browsing on Yahoo News. Do you have any suggestions on how to get listed in Yahoo News? I’ve been trying for a while but I never seem to get there! Thanks…
2011…
Thanks a bunch for sharing this with all of us you really know what you’re talking about! Bookmarked. Please also visit my website =). We could have a link exchange arrangement between us!…
Gems form the internet…
[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]……
This is the Droid you are looking for…
I loved the story….
Conveyancers…
[...]below you’ll find the link to some sites that we think you should visit[...]…
Get More Info…
[...]Greetings! Very helpful advice within this post! It is the little changes that produce the greatest changes. Thanks for sharing![...]…
Car Auctions…
Hello, i read your blog from time to time and i own a similar one and i was just curious if you get a lot of spam feedback? If so how do you stop it, any plugin or anything you can suggest? I get so much lately it’s driving me mad so any support is ve…
Repossessed Cars…
Howdy, i read your blog occasionally and i own a similar one and i was just wondering if you get a lot of spam feedback? If so how do you reduce it, any plugin or anything you can recommend? I get so much lately it’s driving me crazy so any help is ve…
2011…
This is a topic close to my heart cheers, where are your contact details though?…
2011…
It’s really a nice and helpful piece of info. I am glad that you shared this useful information with us. Please keep us up to date like this. Thanks for sharing….
2011…
Hi, I think your site might be having browser compatibility issues. When I look at your website in Safari, it looks fine but when opening in Internet Explorer, it has some overlapping. I just wanted to give you a quick heads up! Other then that, fantas…
2011…
Thank you for the sensible critique. Me and my neighbor were just preparing to do some research on this. We got a grab a book from our local library but I think I learned more from this post. I am very glad to see such excellent information being share…
2011…
Your style is so unique compared to many other people. Thank you for publishing when you have the opportunity,Guess I will just make this bookmarked….
2011…
Having read this I thought it was very informative. I appreciate you taking the time and effort to put this article together. I once again find myself spending way to much time both reading and commenting. But so what, it was still worth it!…
2011…
Those are yours alright! . We at least need to get these people stealing images to start blogging! They probably just did a image search and grabbed them. They look good though!…
2011…
What’s Happening i am new to this, I stumbled upon this I have found It absolutely useful and it has aided me out loads. I hope to contribute & assist other users like its helped me. Great job….
Ziola Alveo…
This design is steller! You obviously know how to keep a reader amused. Between your wit and your videos, I was almost moved to start my own blog (well, almost…HaHa!) Fantastic job. I really enjoyed what you had to say, and more than that, how you pr…
2011…
Excellent beat ! I wish to apprentice while you amend your web site, how can i subscribe for a blog web site? The account aided me a acceptable deal. I had been tiny bit acquainted of this your broadcast provided bright clear idea…
2011…
I am not sure where you’re getting your info, but great topic. I needs to spend some time learning much more or understanding more. Thanks for magnificent information I was looking for this info for my mission….
2011…
I would like to thank you for the efforts you’ve put in writing this web site. I am hoping the same high-grade web site post from you in the upcoming as well. In fact your creative writing abilities has inspired me to get my own website now. Actually …
2011…
Having read this I thought it was very informative. I appreciate you taking the time and effort to put this article together. I once again find myself spending way to much time both reading and commenting. But so what, it was still worth it!…
2011…
Hi there, You’ve done an incredible job. I’ll certainly digg it and personally recommend to my friends. I am sure they will be benefited from this site….
Kredyty…
Hello there! I could have sworn I’ve been to this website before but after reading through some of the post I realized it’s new to me. Nonetheless, I’m definitely happy I found it and I’ll be bookmarking and checking back frequently!…
Nice…
Nice post. I was checking constantly this blog and I’m impressed! Very useful info specifically the last part
I care for such information a lot. I was looking for this particular information for a long time. Thank you and best of luck….
Hello there, just became aware of your blog through Google, and found that it is really informative. I am going to watch out for brussels. I’ll appreciate if you continue this in future. Numerous people will be benefited from your writing. Cheers!…
2011…
Its like you read my mind! You appear to know so much about this, like you wrote the book in it or something. I think that you could do with some pics to drive the message home a bit, but instead of that, this is magnificent blog. An excellent read. I…
Just read this ……
I?d should examine with you here. Which isn’t one thing I normally do! I take pleasure in reading a put up that can make folks think. Additionally, thanks …
2011…
Hi, I think your site might be having browser compatibility issues. When I look at your website in Safari, it looks fine but when opening in Internet Explorer, it has some overlapping. I just wanted to give you a quick heads up! Other then that, fantas…
2011…
Pretty! This was a really wonderful post. Thank you for your provided information….
2011…
I would like to thnkx for the efforts you have put in writing this blog. I am hoping the same high-grade blog post from you in the upcoming as well. In fact your creative writing abilities has inspired me to get my own blog now. Really the blogging is …
Great article…
I gotta favorite this website it seems extremely helpful very useful…
This is great view…
It is suitabletime and energy to producea fewprograms regardingthe more expressionas well asit really istime and energy to be happyI’ve acquirethis kind ofpostand also in the event that Wemay possibly simplyIdesire to adviseyoua few interesting concer…
Just read this ……
Appreciate it for helping out, fantastic information….
2011…
I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post……
2011…
Great blog here! Also your web site loads up very fast! What host are you using? Can I get your affiliate link to your host? I wish my website loaded up as quickly as yours lol…
2011…
I appreciate, cause I found just what I was looking for. You’ve ended my four day long hunt! God Bless you man. Have a nice day. Bye…
2011…
Heya i am for the first time here. I came across this board and I find It truly useful & it helped me out much. I hope to give something back and aid others like you aided me….
Read was interesting, stay in touch……
[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]……
Pozycjonowanie…
Howdy! This is kind of off topic but I need some guidance from an established blog. Is it very hard to set up your own blog? I’m not very techincal but I can figure things out pretty fast. I’m thinking about setting up my own but I’m not sure where …
My opinion is ……
Just what I was searching for, appreciate it for putting up….
2011…
Your style is so unique compared to many other people. Thank you for publishing when you have the opportunity,Guess I will just make this bookmarked….
2011…
This is a very good tips especially to those new to blogosphere, brief and accurate information… Thanks for sharing this one. A must read article….
2011…
hello!,I like your writing very much! share we communicate more about your article on AOL? I require an expert on this area to solve my problem. May be that’s you! Looking forward to see you….
2011…
whoah this blog is wonderful i love reading your articles. Keep up the great work! You know, a lot of people are searching around for this info, you could help them greatly….
2011…
Way cool, some valid points! I appreciate you making this article available, the rest of the site is also high quality. Have a fun….