• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Blast mail API

 
Ranch Hand
Posts: 250
Python Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there any Java Mail or Open-source Java API for sending/managing Blast mails? My requirement is to make a stand-alone application where the user could choose the senders and input the mail text for sending some monthly blast mails.

Thanks,
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you looking for an application or an API? What would this do that a regular email client can't?
 
Debashish Chakrabarty
Ranch Hand
Posts: 250
Python Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The need is for a standalone web-application. The specific things needed are:
(1) Ability to send the same email from multiple email addresses to multiple addresses
(2) Ability to create/edit the email text and add/remove Email Ids from sender list while sending
(3) Mails should not appear as Spam as this would be monthly product mailers to people who are subscribers
(4) Queue up the mails and send the user a report of mails sent successfully/failed mails etc

I have not really worked extensively on Java mail API and cannot tell if all these are possible using the same.

Thanks.
[ February 08, 2006: Message edited by: Debashish Chakrabarty ]
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


(1) Ability to send the same email from multiple email addresses to multiple addresses[/QB]

Yes, JavaMail can do this.


(2) Ability to create/edit the email text and add/remove Email Ids from sender list while sending

That's something you would do with plain ordinary Java programming before sending the message


(3) Mails should not appear as Spam as this would be monthly product mailers to people who are subscribers

Whether other mail servers consider your mail as spam depends on much more than the code you use to send the mail. There's your network configuration, your choice of subject line, whether you use HTML format, the content of the text, and a host of other considerations. I get regular newsletters at work all the time that our spam filter flags as possible spam.


(4) Queue up the mails and send the user a report of mails sent successfully/failed mails etc

I'm not sure what you mean by "failed" here. Usually you get "bounce" messages from a server, later, if there's a problem with the address you sent a message to.

I get the feeling that you aren't really an expert on how e-mail works in the Internet. You should probably educate yourself a little more about the subject before making decisions like this one.
 
This is my favorite tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic