Skip to content

Commit

Permalink
Merge pull request #2 from StevenMaude/remove-extra-space-from-body
Browse files Browse the repository at this point in the history
Remove extra space from first line of body
  • Loading branch information
StevenMaude authored Nov 12, 2016
2 parents 09cbcbd + 5421de1 commit 3c5652d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ func getMail(latestMsg publicMsg, cookies []*http.Cookie) error {

fmt.Println("\nFrom :", mailMessage.Data.From)
fmt.Println("Subject:", mailMessage.Data.Subject)
fmt.Println("\n", mailMessage.Data.Parts[0].Body)
fmt.Println()
fmt.Println(mailMessage.Data.Parts[0].Body)
return nil
}

Expand Down

0 comments on commit 3c5652d

Please sign in to comment.