Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
52d153da
authored
2014-07-22 13:45:24 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge pull request #710 from francoishill/patch-8
Update smtp.go (develop branch)
2 parents
91ee42ce
6ce55e88
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
6 deletions
logs/smtp.go
logs/smtp.go
View file @
52d153d
...
...
@@ -54,6 +54,18 @@ func (s *SmtpWriter) Init(jsonconfig string) error {
return
nil
}
func
(
s
*
SmtpWriter
)
GetSmtpAuth
(
host
string
)
smtp
.
Auth
{
if
len
(
strings
.
Trim
(
s
.
Username
,
" "
))
==
0
&&
len
(
strings
.
Trim
(
s
.
Password
,
" "
))
==
0
{
return
nil
}
return
smtp
.
PlainAuth
(
""
,
s
.
Username
,
s
.
Password
,
host
,
)
}
// write message in smtp writer.
// it will send an email with subject and only this message.
func
(
s
*
SmtpWriter
)
WriteMsg
(
msg
string
,
level
int
)
error
{
...
...
@@ -64,12 +76,8 @@ func (s *SmtpWriter) WriteMsg(msg string, level int) error {
hp
:=
strings
.
Split
(
s
.
Host
,
":"
)
// Set up authentication information.
auth
:=
smtp
.
PlainAuth
(
""
,
s
.
Username
,
s
.
Password
,
hp
[
0
],
)
auth
:=
s
.
GetSmtpAuth
(
hp
[
0
])
// Connect to the server, authenticate, set the sender and recipient,
// and send the email all in one step.
content_type
:=
"Content-Type: text/plain"
+
"; charset=UTF-8"
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment