want to change the fields of email sending from contact us page - magento-1.9

I created Contact us cms page as it is not defined.My fields in email sending are
Name-
Email-
Telephone-
Comment-
I want to change the email fields are
Name-
Email-
Telephone-
Message-

Please follow these steps:
STEP 1
Admin Panel => System => Transactional E-mails and click Add New Template and from the Template drop-down box select Contact Form then Load Template. Under template change Comment to Message
STEP 2
System => Configuration and select Contacts. Then under the Email Options, select your new template under the Email Template drop-down and click on Save Config.

Related

Salesforce Marketing Cloud -> How to pass the email adress to existing Webform

I need a form (in Wordpress) that submits the email address I entered to the Marketing Cloud newsletter subscription page. This way the system should recognize if it is a new registration or an existing contact.
Basically a field "E-Mail" address and the button "send" afterwards opens a new page with the Salesfroce registration form.
Screenshot example Form
https://i.imgur.com/GpGkFEB.png
After click on send, a new site will open for checking the e-mail:
https://cloud.marketing.mysite.com/newsletter?ekey=[the subscribers’s E-Mail address]
This is the form action:
Thanks for your help!
Kind regards,
Jason
This should work. cloud pages in Marketing cloud can check if a Query Parameter with Ekey exists, if it does , ut can access the value and save it in a DE.

How do I pre-fill a lead's information such as name and email on a linked page using HTML?

I know you have to use {{firstname}} so the lead's name shows up in an initial email they receive, but how do you transfer that data to a linked page?
For example, I'm sending email ads for a client, but when the lead clicks on the client's link in the email, they are sent to the client's site and the pre-filled names and email are the same for everyone who clicks on the link.
How do I get that {{firstname}} information to show up in the form on the client's site?

How Do I Create an html email button that will send back to me an emailed response?

I have a small ecommerce business and from time to time a customer will say that they never ordered the item and I am forced to refund their money due to lack of any confirmation from the customer as to his actually placing the order.
I would like to add either an hmtl button or any sort of tool to the emails that i sent you with the customer's receipt. The customer will get the email with his receipt and also within the email will be a button ("I approve This Transaction") for him to click on that will send me back a confirmation email.
Please advise.
Thanks,
Don
There are 2 ways to do this.
With a mailto: link, this would open the users default email client where they would have to send the email as an extra step.
URL parameter in a normal href/button link (ie: www.yoursite.com/yourpage.php?email=their#email.com). You would link to a webpage (yourpage.php) that would pass that URL parameter (in this example "email", but can be any other info you pass through) you can then parse that URL parameter in your webpage and have it email you automatically based on that info.
Option 2 is the way to go, but requires some coding knowledge (PHP for example). Also, in order to set up unique URL parameters, you'll need a system that uses merge tags to create unique values for each email you send. I'd suggest you should use a transactional email service provider for this.

Magento transactional email shows and old template even after styling it

I made some inline styling changes on a Transactional Emails template. My changes are visible when I preview the Transactional emails template. but the problem is when I send a test email to a gmail I still get an old version of the Transactional email template. My new changes don't show up. I cleared the cache and I did Reindexing. but my My new Transactional email template doesn't show up.
Is there a step that i'm missing? or Is this problem related to Magento or the Server?
After creating the transactional email, you still need to assign it in the configuration to be used.
For example, to change the New Order template.
Go to System > Transactional Emails and create a new email template for New Order
Once the email template is created, go to System > Configuration > Sales Emails > Order
Change New Order Confirmation Template to the name of your email template. You can also do the same for New Order Confirmation Template for Guest if you want to use the same template for guest customers.
Save Config, refresh your caches.
Customers will now receive your email template for New Orders.

Confirmation email sent to user in vb.net to mysql database

Just want to ask if there is some way to add automatic email confirmation to vb.net website.
I want that user create new account in the website and the website sent the confirmation link to them. Only if the confirmation email is clicked the user will be able to fully register.
I know that there are ways with build in login page from vb. But I'm using my own login. Mainly becouse the database where user connect is MySql.
something like this: http://www.asp.net/web-forms/videos/authentication/implement-the-registration-verification-pattern
Any idea where to look? most of the google search links are with php or to Microsoft Sql.
Thanks in advance for any good link or solution.
Petr
basically, when an user registers the account, you generate a confirmation # (I will use GUID), then send the user an email with the confirmation link. the confirmation link is the url of the confirmation page with the confirmation # as parameter, i.e. www.mysite.com/confirmation.aspx?code={guid} . you save the confirmation code in the database with the user account table (it could be in the same table or a separated table). the user has to click the confirmation url to confirm. when confirm, you just need to check whether the code is the same as the Guid in the database.
Basically, the process is the same and it has no much relation with mySQL or SQL Server.
here is an example, although it is C#, the same process, just a little bit different syntax in code:
http://www.webreference.com/programming/asp_net/registration-confirmation-system/index.html
also
asp.net confirmation mail send link that contains a unique identifier