has anyone had any issues w/ the email module not ...
# suitescript
c
has anyone had any issues w/ the email module not sending any emails in a script or maybe like 1 out of the 4 you are sending? Its totally random (SB btw)
e
did you check Bounced Email Addresses and/or Undelivered Email Addresses page? I found recently in one environment (Prod and SB) that filters may have been blocking emails, and emails started bouncing, thereby making it onto both lists
c
i have not. I just went to saving it in the file cabinet for now
m
As ec said, it's a good idea to put 'T' for Bounced Email Addresses', which is the 9th parameter in nlapiSendEmail(). In particular, read this: https://<<stick-account-id-here>>.app.netsuite.com/app/help/helpcenter.nl?fid=section_n3068135.html#bridgehead_N3068387
This in particular, is relevant to your use: To send important email, for which you need bounceback notifications when the email is not successfully delivered. To do this, set notifySenderOnBounce to true. Note that when this parameter is used, the maximum number of total recipients (recipient + cc + bcc) allowed is 10. In addition, the governance is increased to 20 usage units.
c
I don't write 1.0 code this is 2.0 code which doesn't have that parameter exposed.
e
yea, I actually meant simply to check the list of bounced email addresses (Page:Bouned Email Addresses in Global Search) and always the Undelivered Email page.
m
@creece You do have that option I think actually. It's the difference between email.send(options) and email.sendBulk(options) . I haven't used much SS 2.0 so I can't confirm, but that's what it's looking like. Then again, I kinda doubt you are using email.sendBulk(options) .