0
votes
1answer
107 views
mailto c# attachment syntax
Hi, how can i to attach a file to this mailto string?
"mailto:" + to + "&SUBJECT=" + subject + "?BODY=" + body + "&Attachment="+attachment"
this doesn't work...(means th …
0
votes
1answer
17 views
Getting all mailto links with jQuery
I need a pattern that will traverse the document and get me all links that have mailto in their href:
<a href="mailto:an@email.com">text</a>
I could of course easily …
0
votes
1answer
14 views
Prevent onbeforeunload from being called when clicking on mailto link
Is there anyway to prevent onbeforeunload from being called when clicking on mailto link in chrome.
In FF, Safari, IE it is working fine.
<html>
<head>
<script typ …
1
vote
4answers
643 views
Include an HTML img tag inside a mailto: URL on an iPhone
I'm trying to include an image in an email, which is being sent using a mailto: URL in an iPhone app. The image shows up on the sender's mail app, but after being sent, the tag see …
1
vote
2answers
77 views
mailto causing a blank page in IE8 when used with Dojo
For some reason, in IE (IE8 in Win 7 to be precise), when I click on a mailto link, I end up with the current page being replaced by a blank page with mailto in the address bar.
…
0
votes
1answer
21 views
Contact-Me from webpage without using email client
Hi all - help out a noob with a simple web development question??
I want to create a Contact-Me form on my website, but I'd like it to not go through the email client that's insta …
0
votes
2answers
481 views
How to Make a button send an email using AS3 automatically
I am working in actionscript 3.0 and am making a website!
In my website, I want to make a button that sends an email using a click of button and I don't want it to open their mail …
4
votes
4answers
201 views
How to send mail with a Subject using a Mailto URL?
Can you help me?
I need to make a Mailto link to my website which is suppose to contain either the product name or the product page URL in the subject section. How can I do it?
Ex …
0
votes
2answers
157 views
How to open an email client and automatically attach file in java
Hi everyone,
I need to create a java code that will open an email client (Outlook, outlook express , etc) and automatically attach a file in it. I tried using mailto but it only op …
2
votes
4answers
1k views
Is it possible to add an HTML link in the body of a MAILTO link
I have not had to mess with mailto links much. However I now need to add a link in the body of a mailto if it is possible.
Is there a way to add a link or to change the email o …
0
votes
2answers
170 views
Broken Accented Characters in a MailTo Link
I'm trying to create a mailto link that contains french accented characters as the subject and email body. Both HTML and URI encoding the chars does not work. Here is my code:
&l …
0
votes
3answers
918 views
C# MailTo with Attachment?
Currently I am using the below method to open the users outlook email account and populate an email with the relevant content for sending:
public void SendSupportEmail(string emai …
2
votes
1answer
89 views
Force mail client to use text rather then HTML through mailto:
I'm using SubVersion and TRAC on a C# project I am working on, and I have my TRAC system setup with a email address that can be used to create tickets. In my program I've added a s …
2
votes
2answers
215 views
mailto: subject= and body= support in email clients
Does anyone know if when sending a html newsletter what kind of support the major email clients have for the subject= and body= parts of the mailto tag?
1
vote
2answers
172 views
Creating new mail (default client) from Java/Windows
I want to open the "new mail" view using the default mail client (i.e. open a new mail form in Outlook). But when I go
String cmd = "explorer.exe \"mailto:a@b.com?subject="+
…
