PHP mail( ) function

(From http://www.w3schools.com/PHP/func_mail_mail.asp )

mail(to,subject,message,headers,parameters)

Parameter Description
to Required. Specifies the receiver / receivers of the email
subject Required. Specifies the subject of the email. Note: This parameter cannot contain any newline characters
message Required. Defines the message to be sent. Each line should be separated with a LF (\n). Lines should not exceed 70 characters.

Windows note: If a full stop is found on the beginning of a line in the message, it might be removed. To solve this problem, replace the full stop with a double dot:
<?php
$txt = str_replace("\n.", "\n..", $txt);
?>

headers Optional. Specifies additional headers, like From, Cc, and Bcc. The additional headers should be separated with a CRLF (\r\n).

Note: When sending an email, it must contain a From header. This can be set with this parameter or in the php.ini file.

parameters Optional. Specifies an additional parameter to the sendmail program (the one defined in the sendmail_path configuration setting). (i.e. this can be used to set the envelope sender address when using sendmail with the -f sendmail option)

Page2RSS幫所有網頁製作RSS

其實我是拿來擷取那些不會開、不想開RSS的朋友們的Blog用的,

不過….真沒想到居然會有這種神奇的東西啊~

我還以為只有Blog的主人才能自行去用RSSBurner之類的來掛咧。

網址:http://page2rss.com/

舉我用Bloglines的例子好了,

在Page URL:右邊的TextBox中輸入想要建立RSS的網址,按「to RSS」,

接著就會掃出該網址的最新資訊,右邊還會列出Google Reader、Bloglines等等,

像我用Bloglines,只要直接點「Bloglines」後,就會自動跳到Bloglines、加入這項新RSS了,

最保險的方法是右鍵點「RSS 2.0」或「Atom 1.0」存網址,再加到自己習慣使用的Rss Reader中。