parent
25a8c1962b
commit
b3a64892fe
4 changed files with 44 additions and 0 deletions
@ -0,0 +1,38 @@ |
||||
Feature: SMTP sending with mixed case address |
||||
Background: |
||||
Given there is connected user "user" |
||||
And there is SMTP client logged in as "user" |
||||
|
||||
Scenario: Mixed sender case in sender address |
||||
When SMTP client sends message |
||||
""" |
||||
From: Bridge Test <[userAddress|capitalize]> |
||||
To: Internal Bridge <bridgetest@protonmail.com> |
||||
|
||||
hello |
||||
|
||||
""" |
||||
Then SMTP response is "OK" |
||||
And mailbox "Sent" for "user" has messages |
||||
| from | to | subject | |
||||
| [userAddress] | bridgetest@protonmail.com | | |
||||
And message is sent with API call |
||||
""" |
||||
{ |
||||
"Message": { |
||||
"Subject": "", |
||||
"Sender": { |
||||
"Name": "Bridge Test" |
||||
}, |
||||
"ToList": [ |
||||
{ |
||||
"Address": "bridgetest@protonmail.com", |
||||
"Name": "Internal Bridge" |
||||
} |
||||
], |
||||
"CCList": [], |
||||
"BCCList": [], |
||||
"MIMEType": "text/plain" |
||||
} |
||||
} |
||||
""" |
||||
Loading…
Reference in new issue