<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>test-mail on IT Quicktasks</title><link>https://quicktasks.ismael.casimpan.com/tags/test-mail/</link><description>Recent content in test-mail on IT Quicktasks</description><generator>Hugo -- gohugo.io</generator><copyright>Copyright © 2018–2022, Ismael Casimpan Jr.; All Rights Reserved</copyright><lastBuildDate>Sat, 28 Sep 2019 00:20:25 +0800</lastBuildDate><atom:link href="https://quicktasks.ismael.casimpan.com/tags/test-mail/index.xml" rel="self" type="application/rss+xml"/><item><title>php mailsender</title><link>https://quicktasks.ismael.casimpan.com/post/php-test-mailsender/</link><pubDate>Sat, 28 Sep 2019 00:20:25 +0800</pubDate><guid>https://quicktasks.ismael.casimpan.com/post/php-test-mailsender/</guid><description>
A quick way to test mail sending via php:
1&amp;lt;?php 2ini_set( &amp;#39;display_errors&amp;#39;, 1 ); 3error_reporting( E_ALL ); 4$from = &amp;#34;webmaster@example.com&amp;#34;; 5$to = &amp;#34;me@example.com&amp;#34;; 6$subject = &amp;#34;PHP Mail Test script&amp;#34;; 7$message = &amp;#34;This is a test to check the PHP Mail functionality&amp;#34;; 8$headers = &amp;#34;From:&amp;#34; . $from; 9mail($to,$subject,$message, $headers); 10echo &amp;#34;Test email sent&amp;#34;; 11?&amp;gt;</description></item></channel></rss>