geraldmpiper Posted April 12, 2007 Share Posted April 12, 2007 I'm experiencing problems with a large Bcc: email address list. I can't use PHP mail() right now, and I'm not sure I'll be able to in the future, so I'm trying to make my code work with HTML mailto:. I'm finding that I can generate an email message in MS Outlook IF my Bcc: list is about 90 emails long. Anything longer than that, and the email will not generate, and I get no error message. I'm not sure if there is a max. number of email addresses, or a max. number of characters. I can MANUALLY cut and paste a list of 300+ email addresses into the Bcc: field in the email message, but I need to generate this email message via code. My code looks something like this: <a href="mailto:[email protected]?bcc=<? echo $emailBCCList ?>">Generate Email with HTML mailto:</a> $emailBCCList = '[email protected],[email protected],[email protected],etc.' I'll need to send out a single email that has approx. 300 or more Bcc: email addresses as part of a large invitation (this is NOT spam; these individuals have asked to be invited). Can anyone ease my troubled mind? Link to comment https://forums.phpfreaks.com/topic/46749-max-size-of-email-address-list-with-mailto/ Share on other sites More sharing options...
geraldmpiper Posted April 12, 2007 Author Share Posted April 12, 2007 Sorry - Code looks like this: "<a href='mailto:[email protected]?bcc=<? echo $emailBCCList ?>'>Generate Email with HTML mailto:< / a>" Link to comment https://forums.phpfreaks.com/topic/46749-max-size-of-email-address-list-with-mailto/#findComment-227838 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.