• 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();
Back to list 97 Comments Jan 19, 11 at 09:41 am

97 Responses to PHP Class for sending Email and preventing Email Spam

  1. best products says:

    I enjoy all…

    i’m contemplating about commencing my quite own blog….

  2. Watch 11-11-11 Full Movie says:

    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…

  3. Asian Tiger Mosquito says:

    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!…

  4. Accounting Basics says:

    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….

  5. seattle organic seo says:

    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…

  6. Accounting Basics says:

    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!…

  7. Accounting Basics says:

    2011…

    Great line up. We will be linking to this great article on our site. Keep up the good writing….

  8. URL says:

    … [Trackback]…

    [...] Read More: iwebprovider.com/php-class-for-sending-email-and-preventing-email-spam/ [...]…

  9. Medical Assistant Resume Examples says:

    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…

  10. Accounting Basics says:

    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….

  11. Accounting Basics says:

    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!…

  12. dslr says:

    DSLR REVIEWS…

    This is my Excerpt…

  13. Accounting Basics says:

    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….

  14. Asian Tiger Mosquito says:

    2011…

    Greetings! Very helpful advice on this article! It is the little changes that make the biggest changes. Thanks a lot for sharing!”…

  15. Accounting Basics says:

    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?…

  16. print to fax says:

    another title…

    I saw this really great post today….

  17. Black Mold says:

    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!…

  18. Accounting Basics says:

    2011…

    Great post. I am facing a couple of these problems….

  19. Accounting Basics says:

    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 …

  20. Financial Accounting says:

    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…

  21. Ecycle says:

    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!…

  22. Asian Tiger Mosquito says:

    2011…

    I got good info from your blog…

  23. Bielizna Damska says:

    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…

  24. Product Reviews says:

    %BLOGTITLE%…

    I read this wonderful post here at %BLOGTITLE%…

  25. CNA Training says:

    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…

  26. Accounting Basics says:

    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!…

  27. Accounting Basics says:

    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….

  28. Pozycjonowanie Stron says:

    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…

  29. Rochii Vintage says:

    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.[...]…

  30. Dating UK says:

    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!![...]…

  31. Friendship Girls says:

    Nice post…

    [...]Friendship with oneself is all important, because without it one cannot be friends with anyone else in the world [...]…

  32. Dating Girls says:

    Big Events…

    [...]Just when you thought men monopolized the cheating game, women came into the scene.[...]…

  33. Web design says:

    2011…

    I got good info from your blog…

  34. Accounting Basics says:

    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!…

  35. Conveyancing Solicitor says:

    Conveyancing Solicitors…

    [...]below you’ll find the link to some sites that we think you should visit[...]…

  36. Financial Accounting says:

    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….

  37. Financial Accounting says:

    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!…

  38. Accounting Basics says:

    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….

  39. Accounting Basics says:

    2011…

    Everything is very open and very clear explanation of issues. was truly information. Your website is very useful. Thanks for sharing….

  40. Stream Direct TV says:

    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 :)

  41. Cosmic Star Ceiling says:

    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?…

  42. Real Writing Jobs Review says:

    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….

  43. HOT SEXY Girls Waiting For You says:

    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!…

  44. HOT SEXY Girls Waiting For You says:

    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!…

  45. my link says:

    Related……

    [...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]……

  46. Free internet dating site says:

    Great article….

    I was just searching for something else on Bing….

  47. Property Solicitors says:

    Conveyancing Solicitors…

    [...]below you’ll find the link to some sites that we think you should visit[...]…

  48. Financial Accounting says:

    2011…

    Great post. I am facing a couple of these problems….

  49. Click Here says:

    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!…

  50. Click Here says:

    2011…

    I love it when people come together and share opinions, great blog, keep it up….

  51. Click Here says:

    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!…

  52. learn american english says:

    Great article…

    very good publish, i certainly love this web site, carry on it…

  53. Zaklady Sportowe says:

    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…

  54. Click Here says:

    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!…

  55. taktak says:

    Gems form the internet…

    [...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]……

  56. 5 Panel Drug Test says:

    This is the Droid you are looking for…

    I loved the story….

  57. Conveyancing says:

    Conveyancers…

    [...]below you’ll find the link to some sites that we think you should visit[...]…

  58. Affordable SEO Plans says:

    Get More Info…

    [...]Greetings! Very helpful advice within this post! It is the little changes that produce the greatest changes. Thanks for sharing![...]…

  59. Police Car Auctions says:

    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…

  60. Repossessed Car says:

    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…

  61. Maid service says:

    2011…

    This is a topic close to my heart cheers, where are your contact details though?…

  62. Affiliate Investigator says:

    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….

  63. Charlotte SEO says:

    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…

  64. Financial Accounting says:

    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…

  65. Read Full Report says:

    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….

  66. Forensic Accounting Salary says:

    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!…

  67. Affiliate Investigator says:

    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!…

  68. Click This Link says:

    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….

  69. Alveo says:

    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…

  70. Read More says:

    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…

  71. Look At This says:

    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….

  72. Read More says:

    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 …

  73. Web Site says:

    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!…

  74. Epic Traffic Bot says:

    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….

  75. Kredyty says:

    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!…

  76. Hi says:

    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….

  77. patricia ellis says:

    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!…

  78. suchmaschkljkj says:

    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…

  79. freee ipad 2 press release says:

    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 …

  80. robe de cocktail says:

    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…

  81. grammarclub.wikidot.com says:

    2011…

    Pretty! This was a really wonderful post. Thank you for your provided information….

  82. Microsoft Points Generator says:

    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 …

  83. detski igra4ki says:

    Great article…

    I gotta favorite this website it seems extremely helpful very useful…

  84. dieti says:

    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…

  85. Cat Furniture says:

    Just read this ……

    Appreciate it for helping out, fantastic information….

  86. http://www.howtowinthelotteryguaranteed.com says:

    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……

  87. http://www.howtowinthelotteryguaranteed.com/how-to-win-the-lottery says:

    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…

  88. vetement femme says:

    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…

  89. languageworld.edublogs.org says:

    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….

  90. utritoler says:

    Read was interesting, stay in touch……

    [...]please visit the sites we follow, including this one, as it represents our picks from the web[...]……

  91. Pozycjonowanie Stron says:

    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 …

  92. detski pesni says:

    My opinion is ……

    Just what I was searching for, appreciate it for putting up….

  93. die Muppets DVD says:

    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….

  94. Online Logon says:

    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….

  95. Internet Business Ideas says:

    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….

  96. friv says:

    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….

  97. Make Money says:

    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….

Leave a Reply

Your email address will not be published. Required fields are marked *

*


eight − = 2

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

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

"Hard work surpasses genius"

by: Mark

"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 Booch

Latest Comments

abseiled... The best post I ever found that captured all the arguments around heading syntax was he...

by: Server

ablution... Every convenience brings its own inconveniences along with it....

by: VPS

abscises... What about "a collection of oldies..but goldies" ?...

by: Server

Keep in Touch

If you would like to find out more about us, just email us at inquiry[AT]iwebprovider.com