Monday, March 26, 2012

Pass the name into HTM file

Hi All,
I have an HTML which I load as string and send it via MailMessage class.
oMailMessage.Body = cHTMLString
Before it is sent as e-mail I need to pass the HTM file the user
First and Last in the first line.
It is a form where the user enters his/her details and then it is
e-mailed the user with the HTM file within the e-mail's body.
It would start like:
Hi Steve Smith,
How can I embed the First and Last name of the user into the htm file?
Thanks,
Joe"JoeP" <DF_XYZ@.hotmail.com> wrote in message
news:ug8bTf5XHHA.4220@.TK2MSFTNGP03.phx.gbl...

> I have an HTML which I load as string and send it via MailMessage class.
> oMailMessage.Body = cHTMLString
> Before it is sent as e-mail I need to pass the HTM file the user
> First and Last in the first line.
> It is a form where the user enters his/her details and then it is
> e-mailed the user with the HTM file within the e-mail's body.
> It would start like:
> Hi Steve Smith,
> How can I embed the First and Last name of the user into the htm file?
oMailMessage.Body = "Hi " + txtFirstName.Text + " " + txtLastName.Text +
",\r\n\r\n";
oMailMessage.Body += cHTMLString;
Hi Mark,
Thanks for your reply. But how do I keep the Verdana font of that embeded
string?
Also the semi column was a problem and got an err which is: Character is not
valid
oMailMessage.Body = "Hi " + txtFirstName.Text + " " + txtLastName.Text +
",\r\n\r\n";
oMailMessage.Body += cHTMLString;
Thanks,
Joe
"JoeP" <DF_XYZ@.hotmail.com> wrote in message
news:OjyJY8$XHHA.992@.TK2MSFTNGP04.phx.gbl...

> Thanks for your reply. But how do I keep the Verdana font of that embeded
> string?
oMailMessage.IsBodyHtml = true;

> Also the semi column was a problem and got an err which is: Character is
> not valid
Ah - I assumed you were using C#...
If you're using VB.NET, you'll (probably) need to do something like:
oMailMessage.Body = "Hi " & txtFirstName.Text & " " & txtLastName.Text &
vbCrLf & vbCrLf
oMailMessage.Body = oMailMessage.Body & cHTMLString
oMailMessage.IsBodyHtml = True
Hi Mark,
Your idea works as well, but even though: oMailMessage.IsBodyHtml = True
The fornt of the below is not the same any more:
oMailMessage.Body = "Hi " & txtFirstName.Text & " " & txtLastName.Text &
vbCrLf & vbCrLf
What I did is: In the first line of the HTM file I did as follows:
Hi {First Name} {Last Name},
Then:
cHTMLString = cHTMLString.Replace("{First Name}", txtFName.Text)
cHTMLString = cHTMLString.Replace("{Last Name}", txtLName.Text)
Thanks,
Joe
Hi,
Actually solution was simple just add font tag in html
like
oMailMessage.Body = "Hi <font face=verdana size=10>" & txtFirstName.Text & "
" & txtLastName.Text & ""
vbCrLf & vbCrLf
oMailMessage.Body = oMailMessage.Body & cHTMLString
oMailMessage.IsBodyHtml = True
it will definately work
cheers
Chetan Chaphekar
"JoeP" wrote:

> Hi Mark,
> Your idea works as well, but even though: oMailMessage.IsBodyHtml = True
> The fornt of the below is not the same any more:
> oMailMessage.Body = "Hi " & txtFirstName.Text & " " & txtLastName.Text &
> vbCrLf & vbCrLf
> What I did is: In the first line of the HTM file I did as follows:
> Hi {First Name} {Last Name},
> Then:
> cHTMLString = cHTMLString.Replace("{First Name}", txtFName.Text)
> cHTMLString = cHTMLString.Replace("{Last Name}", txtLName.Text)
> Thanks,
> Joe
"Chetan Chaphekar" <ChetanChaphekar@.discussions.microsoft.com> wrote in
message news:F8362751-1E99-4F82-B043-D3D44F0A120F@.microsoft.com...

> it will definately work
As far as you are concerned, it will definitely work...
However, you need to think quite carefully about sending HTML emails...
Most modern mail software can be configured not only to strip out all HTML
content, but also to reject emails with HTML content...
Depending on how paranoid / security-conscious your recipients are, they
might never even see your emails if you send them in HTML format...
Hi Mark,
The problem is that I have some links in that HTM file. So I how can I
provide those links without any HTM code. Otherwise the user will need to
copy the URL into the Browser. Not that productive.
Regards,
Joe
"JoeP" <DF_XYZ@.hotmail.com> wrote in message
news:OCnYUOPYHHA.3268@.TK2MSFTNGP04.phx.gbl...

> The problem is that I have some links in that HTM file. So I how can I
> provide those links without any HTM code.
You can't...

> Otherwise the user will need to copy the URL into the Browser.
That's true.

> Not that productive.
Even less productive if the email gets rejected by the user's mail client
before the user even has a chance to see it...
Your call...
Hi Joep,
What mark has said is right but also consider the percentage of receipient
who has this kind of settings. almost all sites who send newsletter to the
subscriber use HTML code in their email.
cheers
chetan chaphekar
"JoeP" wrote:

> Hi Mark,
> The problem is that I have some links in that HTM file. So I how can I
> provide those links without any HTM code. Otherwise the user will need to
> copy the URL into the Browser. Not that productive.
> Regards,
> Joe
>
>

0 comments:

Post a Comment