
February 20th, 2005, 08:48 AM
|
 |
Web-Standards Evangelist
|
|
Join Date: Nov 2003
Posts: 1,522
  
Time spent in forums: 4 Days 23 h 48 m 4 sec
Reputation Power: 8
|
|
Depends on the email client software of the site visitor if you don't have any server-side SMTP software.
FrontPage Server Extensions, as used on Angelfire, do support the sending of email messages using a server-sided SMTP server you know nothing about, but don't support the sending of attachments for obvious reasons.
Using:
Code:
<form action="myemail@address.com">
<label for="inpFile">Choose a file: </label><input type="file" id="inpFile" />
<button type="submit">Send Email</button>
</form>
Will cause an email client at the client-end to boot up and attach that file
....But only works for a FEW email clients, and certanly NOT MS Outlook, Outlook Express, or Hotmail. (I think Thunderbird does, but I'm not entirely sure)
Speak to AngelFire tech support about granting you access to PHP and any SMTP servers.
If not, get a real host, mofo!
|