Forum Moderators: open

Message Too Old, No Replies

Inserting server time and date in cdonts email

Can't find the answer

         

Googly

2:25 pm on Aug 4, 2003 (gmt 0)



Once a form gets sent via CDONTS on my asp page I want the date and time of the server to be included in the email. Can someone help me out here? I imagine it's quite simple, it's just I can't find the answer.

Cheers

aspdaddy

2:48 pm on Aug 4, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You can use the function Now() :

objMail.Body = "Server date/time=" & Now()

Googly

8:08 am on Aug 5, 2003 (gmt 0)



That's the one! Thanks very much aspdaddy.

Googly