8.6.4 • Published 1 year ago

ut-port-mail v8.6.4

Weekly downloads
5
License
Apache-2.0
Repository
github
Last release
1 year ago

Mail port: ut-port-mail

The purpose of this port is for sending mails from remote/local servers.

In the UT5 implementations the Mail port is initialized in the following manner:

    module.exports = {
        id: 'mail',
        type: 'mail',
        logLevel: 'trace',
        url: 'smtp://127.0.0.1:1234',
        service: false,
        //setting that came from node mailer module, they are directly applied
        settings: {},
        ssl: false,
        receive: function(msg) {
            return msg;
        },
        send: function(msg) {
            return msg;
        }
    }

all of the properties that can be set can be seen in the Nodemailer github page.

Gmail example

module.exports = {
    id: 'mail',
    type: 'mail',
    logLevel: 'trace',
    url: 'smtp://smtp.gmail.com',
    service: 'gmail',
    settings: {
        auth: {
            user: 'user',
            pass: 'pass'
        }
    },//setting that came from node mailer module, they are directly applied
    ssl: false,
    receive: function(msg) {
        return msg;
    },
    send: function(msg) {
        return msg;
    }
}
8.6.4

1 year ago

8.6.3

2 years ago

8.6.2

2 years ago

8.6.1

3 years ago

8.6.0

3 years ago

8.5.0

4 years ago

8.4.7

4 years ago

8.4.6

4 years ago

8.4.5

4 years ago

8.4.4

4 years ago

8.4.3

4 years ago

8.4.2

5 years ago

8.4.1

5 years ago

8.4.0

5 years ago

8.3.2

5 years ago

8.3.1

5 years ago

8.3.0

5 years ago

8.2.1

5 years ago

8.2.0

5 years ago

8.1.1

5 years ago

8.1.0

5 years ago

8.0.2

5 years ago

8.0.1

5 years ago

8.0.0

5 years ago

7.1.0

6 years ago

7.0.0

6 years ago

7.0.0-ut6.6

6 years ago

7.0.0-ut6.5

6 years ago

7.0.0-ut6.4

7 years ago

7.0.0-ut6.3

7 years ago

7.0.0-ut6.2

7 years ago

7.0.0-ut6.1

7 years ago

7.0.0-ut6.0

7 years ago

6.0.1

7 years ago

6.0.0

7 years ago

5.5.7

7 years ago

5.5.6

7 years ago

5.5.5

7 years ago

5.5.4

7 years ago

5.5.3

7 years ago

5.5.2

7 years ago

5.5.1

7 years ago

5.5.0

7 years ago

5.4.6

8 years ago

5.4.5

8 years ago

5.4.4

8 years ago

5.4.3

8 years ago