Harry Wheat
|
| Posted: 05/30/2002, 8:18 PM |
|
I cannot get any linebreaks in outlook express whenever I send mail. Does
any know why?
Here is my code.
With CreateObject("Jmail.SMTPMail")
.ServerAddress = MailServer
.Sender = AdminEmail
.AddRecipient users.email.Text
.Subject = NewSubject
.Body = NewBody & " " & chr(13) & _
"Your User Name is: " & users.user_login.Text & chr(13) & _
"Your Password is: " & users.user_password.Text
.Execute
End With
I am trying to get a line break between username and password. Everything
works great except Line Breaks.
Thanks
Harry
|
|
|
 |
Naveen Bhalla [xfriday.com]
|
| Posted: 05/30/2002, 9:56 PM |
|
.Body = NewBody & " " & vbCrLf & _
"Your User Name is: " & users.user_login.Text & vbCrLf & _
"Your Password is: " & users.user_password.Text
"Harry Wheat" <sales@ifixpcs.com> wrote in message
news:ad6q1j$dgc$1@news.codecharge.com...
> I cannot get any linebreaks in outlook express whenever I send mail. Does
> any know why?
> Here is my code.
> With CreateObject("Jmail.SMTPMail")
> .ServerAddress = MailServer
> .Sender = AdminEmail
> .AddRecipient users.email.Text
> .Subject = NewSubject
> .Body = NewBody & " " & chr(13) & _
> "Your User Name is: " & users.user_login.Text & chr(13) & _
> "Your Password is: " & users.user_password.Text
> .Execute
> End With
>
> I am trying to get a line break between username and password. Everything
> works great except Line Breaks.
> Thanks
> Harry
>
>
>
|
|
|
 |
Harry Wheat
|
| Posted: 05/30/2002, 10:15 PM |
|
Still cannot get it working.
Here is my updated code.
With CreateObject("Jmail.SMTPMail")
.ServerAddress = MailServer
.Sender = AdminEmail
.AddRecipient users.email.Text
.Subject = NewSubject
.Body = NewBody & " " & vbCrLf & _
"Your User Name is: " & users.user_login.Text & vbCrLf & _
"Your Password is: " & users.user_password.Text
.Execute
End With
Thanks
Harry
"Naveen Bhalla [xfriday.com]" <xrecker@yahoo.com> wrote in message
news:ad6vpr$n6u$1@news.codecharge.com...
> .Body = NewBody & " " & vbCrLf & _
> "Your User Name is: " & users.user_login.Text & vbCrLf & _
> "Your Password is: " & users.user_password.Text
>
> "Harry Wheat" <sales@ifixpcs.com> wrote in message
>news:ad6q1j$dgc$1@news.codecharge.com...
> > I cannot get any linebreaks in outlook express whenever I send mail.
Does
> > any know why?
> > Here is my code.
> > With CreateObject("Jmail.SMTPMail")
> > .ServerAddress = MailServer
> > .Sender = AdminEmail
> > .AddRecipient users.email.Text
> > .Subject = NewSubject
> > .Body = NewBody & " " & chr(13) & _
> > "Your User Name is: " & users.user_login.Text & chr(13) & _
> > "Your Password is: " & users.user_password.Text
> > .Execute
> > End With
> >
> > I am trying to get a line break between username and password.
Everything
> > works great except Line Breaks.
> > Thanks
> > Harry
> >
> >
> >
>
>
|
|
|
 |
Harry Wheat
|
| Posted: 05/30/2002, 10:20 PM |
|
It is Work Naveen, Thanks a lot for your help. I had forgot to publish my
project to the server. I knew it had to work. I could see nothing wrong.
Thank's Very Much
Harry Wheat
"Naveen Bhalla [xfriday.com]" <xrecker@yahoo.com> wrote in message
news:ad6vpr$n6u$1@news.codecharge.com...
> .Body = NewBody & " " & vbCrLf & _
> "Your User Name is: " & users.user_login.Text & vbCrLf & _
> "Your Password is: " & users.user_password.Text
>
> "Harry Wheat" <sales@ifixpcs.com> wrote in message
>news:ad6q1j$dgc$1@news.codecharge.com...
> > I cannot get any linebreaks in outlook express whenever I send mail.
Does
> > any know why?
> > Here is my code.
> > With CreateObject("Jmail.SMTPMail")
> > .ServerAddress = MailServer
> > .Sender = AdminEmail
> > .AddRecipient users.email.Text
> > .Subject = NewSubject
> > .Body = NewBody & " " & chr(13) & _
> > "Your User Name is: " & users.user_login.Text & chr(13) & _
> > "Your Password is: " & users.user_password.Text
> > .Execute
> > End With
> >
> > I am trying to get a line break between username and password.
Everything
> > works great except Line Breaks.
> > Thanks
> > Harry
> >
> >
> >
>
>
|
|
|
 |
Naveen Bhalla [xfriday.com]
|
| Posted: 05/30/2002, 10:36 PM |
|

"Harry Wheat" <sales@ifixpcs.com> wrote in message
news:ad717m$pqr$1@news.codecharge.com...
> It is Work Naveen, Thanks a lot for your help. I had forgot to publish my
> project to the server. I knew it had to work. I could see nothing wrong.
> Thank's Very Much
> Harry Wheat
>
> "Naveen Bhalla [xfriday.com]" <xrecker@yahoo.com> wrote in message
>news:ad6vpr$n6u$1@news.codecharge.com...
> > .Body = NewBody & " " & vbCrLf & _
> > "Your User Name is: " & users.user_login.Text & vbCrLf & _
> > "Your Password is: " & users.user_password.Text
> >
> > "Harry Wheat" <sales@ifixpcs.com> wrote in message
> >news:ad6q1j$dgc$1@news.codecharge.com...
> > > I cannot get any linebreaks in outlook express whenever I send mail.
> Does
> > > any know why?
> > > Here is my code.
> > > With CreateObject("Jmail.SMTPMail")
> > > .ServerAddress = MailServer
> > > .Sender = AdminEmail
> > > .AddRecipient users.email.Text
> > > .Subject = NewSubject
> > > .Body = NewBody & " " & chr(13) & _
> > > "Your User Name is: " & users.user_login.Text & chr(13) & _
> > > "Your Password is: " & users.user_password.Text
> > > .Execute
> > > End With
> > >
> > > I am trying to get a line break between username and password.
> Everything
> > > works great except Line Breaks.
> > > Thanks
> > > Harry
> > >
> > >
> > >
> >
> >
>
>
|
|
|
 |