Expand my Community achievements bar.

Email address added twice

Avatar

Former Community Member
I have a custom button to submit forms by email. I prefer the custom over the standard email button in LC. Below is the basic code that I am using. Why is it adding the same email address to the email twice?



Below is how it is coming into my Lotus Notes email.

To:someone@hotmail.com someone@hotmail.com



var mail;

var address = "someone@hotmail.com";

var sub = "CR Test Request";

mail = "mailto: " + address + "?subject=" + sub;

event.target.submitForm({

cURL: mail,

bEmpty: true,

cSubmitAs: "PDF",

cCharset: "utf-8"

});
2 Replies

Avatar

Level 2
I've seen this issue come up quite frequently in the AcrobatUsers.com forum and it's only specific to Lotus Notes (perhaps it's a MAPI bug). One member suggested adding a space next to the comma after the address. It still results in a double address, but the mailing goes through once. Here is a link to the post for your reference:

http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=7105

Avatar

Former Community Member
I added a comma and just let the double address occur. I just have to explain this to all my LN customers. :-(