File: test_email.php

package info (click to toggle)
opendb 0.81p18-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,716 kB
  • ctags: 6,787
  • sloc: php: 50,213; sql: 3,098; sh: 272; makefile: 54; xml: 48
file content (13 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
	if(mail('jasonpell@hotmail.com', 
		'Subject test',
		'Test message', 
		'From: Jason Pell <jasonpell@users.sourceforge.net>'))
	{
		echo("<p>Message sent...</p>");
	}
	else
	{
		echo("<p>Message NOT sent...</p>");
	}
?>