plomino / Plomino

Powerful and flexible web-based application builder
33 stars 37 forks source link

Plomino 2 : sendMail is working only for the first recipient email address #756

Open sverbois opened 8 years ago

sverbois commented 8 years ago

When I send an email with

sendMail(
    db = db,
    title="Plomino Email",
    html_message = message,
    sender='jean.dupont@yahoo.be',
    recipients=['recipient1@unamur.be','recipient2@unamur.be'],
    cc='cc@unamur.be',
    bcc='bcc@unamur.be'
)

'recipient1@unamur.be' and 'recipient2@unamur.be' receive the email but not 'cc@unamur.be' and 'bcc@unamur.be'

ebrehault commented 8 years ago

I cannot reproduce this problem (tested with current master version of Plomino), can you try to identify more precisely what happens in your case?

sverbois commented 8 years ago

@ebrehault . It works indeed with 'recipient2@unamur.be' but not with 'cc@unamur.be' and 'bcc@unamur.be'. I have updated the ticket title.

ebrehault commented 8 years ago

I do not think it is a Plomino thing. I can see Plone API is not offering cc and bcc: http://docs.plone.org/develop/plone.api/docs/api/portal.html#plone.api.portal.send_email so maybe it is not supported anymore.

ermancio commented 7 years ago

Hi. I would like to send a notification e-mail (to specified recipients) onsave event in my Plomino database. How can i do? LM