Restriction in mailto link

R

ramesh.thangamani

Can anyone please tell me if there is any restriction on size of
mailto link or the number of email ids it can have. Because currently
in my application i am observing that email all is not working when
there are 142 ids, but it works when there are about 70 ids. Also
Netscape email client works fine for 142 email ids. Is there some
restriction on email clients or mailto has some restriction?
 
A

Adrienne Boswell

Gazing into my crystal ball I observed (e-mail address removed) writing
in
Can anyone please tell me if there is any restriction on size of
mailto link or the number of email ids it can have. Because currently
in my application i am observing that email all is not working when
there are 142 ids, but it works when there are about 70 ids. Also
Netscape email client works fine for 142 email ids. Is there some
restriction on email clients or mailto has some restriction?

Not sure, but I know that some SMTP servers check the number of recipients
for spamming.

If you are doing <a href="mailto:[email protected],[email protected],etc">
Mail Us</a>, such a long list could be breaking the user's email client.
Better to do it server side and set up forwarding on the mail server.
 
R

ramesh.thangamani

Gazing into my crystal ball I observed (e-mail address removed) writing
in

Not sure, but I know that some SMTP servers check the number of recipients
for spamming.

If you are doing <a href="mailto:[email protected],[email protected],etc">
Mail Us</a>, such a long list could be breaking the user's email client.
Better to do it server side and set up forwarding on the mail server.

Thanks Adrienne so i guess we shouldn't use mailto unless we know that
the list is going to be pretty simple.
 
A

Adrienne Boswell

Gazing into my crystal ball I observed (e-mail address removed)
writing in
Thanks Adrienne so i guess we shouldn't use mailto unless we know that
the list is going to be pretty simple.

It should be something like:
<h1>Contact Information</h1>
<p>ACME Widgets<br>
123 Any Street<br>
Any Town Any Province<br>
Any Country<br>
<a href="mailto:[email protected]">[email protected]</a>
</p>

This will work for people who have an email client available. It will
also work for those who want to copy and paste (if they are using web
based email, etc.)
 
A

Adrienne Boswell

Gazing into my crystal ball I observed (e-mail address removed)
writing in
Agree that it works, but my requirement is to notify lot of people in
single email and also they should be in BCC

Then do it server side. If I were you I would set up a mailbox that
those persons want to share, and send a single email to that address.

If you don't have access to your mail server, then still, do it server
side. Set up a table to put those email address into, then loop through
them. Much easier to change a table than have to change many files.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,772
Messages
2,569,593
Members
45,111
Latest member
VetaMcRae
Top