OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The LUCI Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
3 // found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
4 | 4 |
5 package mail | 5 package mail |
6 | 6 |
7 // TestMessage is the message struct which will be returned from SentMessages. | 7 // TestMessage is the message struct which will be returned from SentMessages. |
8 // | 8 // |
9 // It augments the Message struct by also including the derived MIMEType for any | 9 // It augments the Message struct by also including the derived MIMEType for any |
10 // attachments. | 10 // attachments. |
11 type TestMessage struct { | 11 type TestMessage struct { |
12 Message | 12 Message |
13 | 13 |
(...skipping 23 matching lines...) Expand all Loading... |
37 // use ["admin@example.com"]. | 37 // use ["admin@example.com"]. |
38 SetAdminEmails(emails ...string) | 38 SetAdminEmails(emails ...string) |
39 | 39 |
40 // SentMessages returns a copy of all messages which were successfully s
ent | 40 // SentMessages returns a copy of all messages which were successfully s
ent |
41 // via the mail API. | 41 // via the mail API. |
42 SentMessages() []*TestMessage | 42 SentMessages() []*TestMessage |
43 | 43 |
44 // Reset clears the SentMessages queue. | 44 // Reset clears the SentMessages queue. |
45 Reset() | 45 Reset() |
46 } | 46 } |
OLD | NEW |