It is possible to execute multiple assignment by if condition, like the following code?
func SendEmail(url, email string) (string, error) { genUri := buildUri() if err := setRedisIdentity(genUri, email); err != nil; genUrl, err := buildActivateUrl(url, genUri); { return "", err } return "test", nil }