2022-09-20 21:59:52 +02:00
|
|
|
@component('mail::message')
|
|
|
|
|
|
|
|
|
|
Hey there 👋
|
|
|
|
|
|
|
|
|
|
Congrats! Your form "{{$form->title}}" was successfully created!
|
|
|
|
|
|
|
|
|
|
If you want to share your form, here is the link:
|
|
|
|
|
|
|
|
|
|
@component('mail::panel')
|
|
|
|
|
{{$form->share_url}}
|
|
|
|
|
@endcomponent
|
|
|
|
|
|
2024-02-27 09:54:06 +01:00
|
|
|
If you want to embed your form to your website, copy and paste the following code:
|
2022-09-20 21:59:52 +02:00
|
|
|
@component('mail::panel')
|
2024-07-01 11:22:37 +02:00
|
|
|
{{ '<iframe style="border:none;width:100%;" id="form-'.$form->slug.'" src="'.$form->share_url.'"></iframe>
|
|
|
|
|
<script type="text/javascript" onload="initForm(\''.$form->slug.'\')" src="'.front_url("widgets/iframe.min.js").'"></script>' }}
|
2022-09-20 21:59:52 +02:00
|
|
|
@endcomponent
|
|
|
|
|
|
2024-02-27 09:54:06 +01:00
|
|
|
Finally, we created a **Discord channel** with all the other users to share our news and guides about OpnForm.
|
2022-09-20 21:59:52 +02:00
|
|
|
I would love to see you there, here is the link:
|
|
|
|
|
|
2024-02-27 09:54:06 +01:00
|
|
|
@component('mail::button', ['url' => config('links.discord')])
|
|
|
|
|
Discord Channel
|
2022-09-20 21:59:52 +02:00
|
|
|
@endcomponent
|
|
|
|
|
|
2024-07-01 11:22:37 +02:00
|
|
|
@endcomponent
|