mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
replyTo is overridable when sending email
This commit is contained in:
@@ -34,7 +34,6 @@ describe "Email", ->
|
||||
to: "bob@bob.com"
|
||||
subject: "new email"
|
||||
html: "<hello></hello>"
|
||||
replyTo: "sarah@bob.com"
|
||||
|
||||
describe "sendEmail", ->
|
||||
|
||||
@@ -71,3 +70,12 @@ describe "Email", ->
|
||||
args.replyTo.should.equal @settings.email.replyToAddress
|
||||
done()
|
||||
|
||||
|
||||
it "should use the reply to address in options as an override", (done)->
|
||||
@sesClient.sendemail.callsArgWith(1)
|
||||
|
||||
@opts.replyTo = "someone@else.com"
|
||||
@sender.sendEmail @opts, =>
|
||||
args = @sesClient.sendemail.args[0][0]
|
||||
args.replyTo.should.equal @opts.replyTo
|
||||
done()
|
||||
|
||||
Reference in New Issue
Block a user