mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-22 20:22:07 +00:00
replyTo is overridable when sending email
This commit is contained in:
parent
274682a83d
commit
a9327cb7c5
1 changed files with 9 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue