When a new issue assigned or any comments coming, the assignee should also be emailed.
//keep the Assignee as the same role as the watchers
if issue.Assignee != nil {
if com.IsSliceContainsStr(names, issue.Assignee.Name) == false {
tos = append(tos, issue.Assignee.Email)
names = append(names, issue.Assignee.Name)
}
}