Hi there,
i have problems sending an email because i only get the lengths of the inputs i enter.
This is for a cheap license system.
$Username = GUICtrlCreateInput("Username", 24, 64, 337, 54, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER,$WS_BORDER))
GUICtrlSetFont(-1, 30, 400, 0, "MS Sans Serif")
$Password = GUICtrlCreateInput("Password", 27, 160, 337, 54, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER,$ES_PASSWORD,$WS_BORDER))
GUICtrlSetFont(-1, 30, 400, 0, "MS Sans Serif")
These are the inputs i want to send via Email ^
$Body = "Username:Password | " & $Username & ":" & $Password
This is the email body ^
when i type
Username: Bread
Password: Fish
The email looks like this:
so only the length of the strings are send .
Please tell me where the problem is.
Thank You