Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to include attachment with mailto?

Status
Not open for further replies.

sarah2michelle

Technical User
Jul 18, 2005
12
US
Is there a way to create an email with an attachment through a mailto command line? Here is what I have so far...


Code:
start mailto:test@test.com?subject=See&body=See Attachment&attachment=c:\test\account3.bmp

This will create the email, but no attachment.

I am using outlook, but want this to work with other mail apps also.

I'm not positive this is the correct forum, but it does appear that you guys do work with mailto. If this is not the correct forum, can someone repoint me?
 
mailto is an html construct so forum215 might be a better bet.

but i believe that the answer is no. you cannot use html to attach a file to an email (it would be quite a security risk, don't you think?).

you can, however, upload a file to the server and have it mailed out.
 
mailto is an HTML thing. not PHP. Try here: forum215

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Thanks! I'll try the other forum and cross my fingers in the meantime.
 
With Outlook -not without some kind of script, I recon.

Very far off forum topic, however, if you have access to a SMTP server, then try this :


Works like this :
Code:
smtpsend -f[COLOR=red]you@yourdomain.com[/color] -t[COLOR=red]me@mydomain.com[/color] -s[COLOR=red]This is the mail subject[/color] -a[COLOR=red]Attached image.jpg[/color] -h[COLOR=red]smtp.yourdomain.com[/color] -i[COLOR=red]MessageText.txt[/color]

Works fine for me ;-)

Good Luck

PS. Virus-checking the exe is your responsability ... I didn't find any threats, but please check in your own best interest.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top